forked from Esri/esri-leaflet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.34 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "esri-leaflet",
"description": "Leaflet plugins for consuming ArcGIS Online and ArcGIS Server services.",
"version": "2.0.0",
"author": "Patrick Arlt <[email protected]> (http://patrickarlt.com)",
"browser": "dist/esri-leaflet-debug.js",
"bugs": {
"url": "https://github.com/esri/esri-leaflet/issues"
},
"contributors": [
"Patrick Arlt <[email protected]> (http://patrickarlt.com)",
"John Gravois <[email protected]> (http://johngravois.com)"
],
"dependencies": {
"arcgis-to-geojson-utils": "^1.0.1",
"leaflet": "^1.0.0-rc.1",
"leaflet-virtual-grid": "^1.0.3",
"tiny-binary-search": "^1.0.2"
},
"devDependencies": {
"chai": "2.3.0",
"eslint": "^1.10.2",
"gh-release": "^2.0.0",
"highlight.js": "^8.0.0",
"http-server": "^0.8.5",
"isparta": "^3.0.3",
"istanbul": "^0.4.2",
"karma": "^0.12.16",
"karma-chai-sinon": "^0.1.3",
"karma-coverage": "^0.5.3",
"karma-mocha": "^0.1.0",
"karma-mocha-reporter": "^0.2.5",
"karma-phantomjs-launcher": "^0.2.0",
"karma-sourcemap-loader": "^0.3.5",
"load-grunt-tasks": "^0.4.0",
"mkdirp": "^0.5.1",
"mocha": "^2.3.4",
"phantomjs": "^1.9.17",
"rollup": "^0.25.4",
"rollup-plugin-json": "^2.0.0",
"rollup-plugin-node-resolve": "^1.4.0",
"rollup-plugin-uglify": "^0.3.1",
"semistandard": "^7.0.5",
"sinon": "^1.11.1",
"sinon-chai": "2.7.0",
"snazzy": "^2.0.1",
"uglify-js": "^2.6.1",
"watch": "^0.17.1"
},
"homepage": "http://esri.github.io/esri-leaflet",
"jsnext:main": "src/EsriLeaflet.js",
"jspm": {
"registry": "npm",
"format": "es6",
"main": "src/EsriLeaflet.js"
},
"keywords": [
"arcgis",
"esri",
"esri leaflet",
"gis",
"leaflet plugin",
"mapping"
],
"license": "Apache-2.0",
"main": "dist/esri-leaflet-debug.js",
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "[email protected]:Esri/esri-leaflet.git"
},
"scripts": {
"build": "rollup -c profiles/debug.js & rollup -c profiles/production.js",
"lint": "semistandard src/**/*.js | snazzy",
"prebuild": "mkdirp dist",
"prepublish": "npm run build",
"pretest": "npm run build",
"release": "./scripts/release.sh",
"start": "watch 'npm run build' src & http-server -p 5000 -c-1 -o",
"test": "npm run lint && karma start"
}
}