-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.44 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "@jawg/js-loader",
"version": "1.0.0",
"description": "A library to load jawg js libraries",
"main": "./dist/jawg-js-loader.js",
"types": "./index.d.ts",
"typeScriptVersion": "2.3",
"scripts": {
"build": "rollup -c",
"watch": "rollup -c -w",
"start": "ROLLUP_SERVE=true rollup -c -w",
"test": "tsc --noEmit test/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jawg/js-loader.git"
},
"keywords": [
"maps",
"osm",
"api",
"typescript",
"js-loader"
],
"author": "Jawg Maps <[email protected]>",
"license": "MIT",
"files": [
"src/index.js",
"dist/jawg-js-loader.js",
"README.md",
"tsconfig.json",
"index.d.ts",
"packages.json"
],
"bugs": {
"url": "https://github.com/jawg/js-loader/issues"
},
"homepage": "https://github.com/jawg/js-loader#readme",
"devDependencies": {
"@babel/core": "^7.14.8",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.14.8",
"@babel/register": "^7.14.5",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^11.0.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^7.0.0",
"prettier": "^2.3.2",
"rollup": "^2.53.3",
"rollup-plugin-app-utils": "^1.0.6",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.3.5"
},
"dependencies": {
"@jawg/types": "^1.0.0"
}
}