forked from Esri/esri-leaflet-vector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.8 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" : "esri-leaflet-vector",
"description": "Esri vector basemap plugin for Leaflet.",
"version": "1.0.7",
"author": "John Gravois <jgravois@esri.com> (http://johngravois.com)",
"contributors": [
"Patrick Arlt <parlt@esri.com> (http://patrickarlt.com)"
],
"bugs": {
"url": "https://github.com/Esri/esri-leaflet-vector/issues"
},
"dependencies": {
"esri-leaflet": "^2.0.3",
"leaflet": "^1.0.0",
"mapbox-gl": "git+https://github.com/Esri/mapbox-gl-js.git#indexed-vector-sources",
"mapbox-gl-leaflet": "^0.0.3"
},
"devDependencies": {
"gh-release": "^2.0.0",
"http-server": "^0.8.5",
"mkdirp": "^0.5.1",
"nodemon": "^1.9.2",
"rollup": "^0.25.4",
"rollup-plugin-commonjs": "^7.0.0",
"rollup-plugin-json": "^2.0.0",
"rollup-plugin-node-resolve": "^1.4.0",
"rollup-plugin-uglify": "^0.3.1",
"semistandard": "^7.0.5",
"snazzy": "^2.0.1",
"watch": "^0.17.1"
},
"homepage": "https://github.com/Esri/esri-leaflet-vector#readme",
"jsnext:main": "src/EsriLeafletVector.js",
"jspm": {
"registry": "npm",
"format": "es6",
"main": "src/EsriLeafletVector.js"
},
"license": "Apache-2.0",
"main": "dist/esri-leaflet-vector-debug.js",
"module": "src/EsriLeafletVector.js",
"browser": "dist/esri-leaflet-vector-debug.js",
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "git+https://github.com/Esri/esri-leaflet-vector.git"
},
"scripts": {
"prebuild": "mkdirp dist",
"build": "rollup -c profiles/debug.js & rollup -c profiles/production.js",
"lint": "semistandard | snazzy",
"prepublish": "npm run build",
"pretest": "npm run build",
"start": "watch 'npm run build' src & http-server -p 8765 -c-1 -o",
"test": "npm run lint",
"release": "./scripts/release.sh"
}
}