forked from Esri/esri-leaflet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.55 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
83
84
85
86
87
88
{
"name": "esri-leaflet",
"description": "Leaflet plugins for consuming ArcGIS Online and ArcGIS Server services.",
"version": "2.0.8",
"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",
"leaflet-virtual-grid": "^1.0.3",
"tiny-binary-search": "^1.0.2"
},
"devDependencies": {
"chai": "3.5.0",
"gh-release": "^2.0.0",
"highlight.js": "^8.0.0",
"http-server": "^0.8.5",
"husky": "^0.12.0",
"isparta": "^4.0.0",
"istanbul": "^0.4.2",
"karma": "^1.3.0",
"karma-chai-sinon": "^0.1.3",
"karma-coverage": "^1.1.1",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.1",
"karma-phantomjs-launcher": "^0.2.0",
"karma-sourcemap-loader": "^0.3.5",
"mkdirp": "^0.5.1",
"mocha": "^3.1.0",
"parallelshell": "^2.0.0",
"phantomjs": "^1.9.8",
"rollup": "^0.25.4",
"rollup-plugin-json": "^2.0.0",
"rollup-plugin-node-resolve": "^1.4.0",
"rollup-plugin-uglify": "^0.3.1",
"semistandard": "^9.0.0",
"sinon": "^1.11.1",
"sinon-chai": "2.8.0",
"snazzy": "^5.0.0",
"uglify-js": "^2.6.1",
"watch": "^0.17.1"
},
"homepage": "http://esri.github.io/esri-leaflet",
"module": "src/EsriLeaflet.js",
"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 | snazzy",
"prebuild": "mkdirp dist",
"prepublish": "npm run build",
"pretest": "npm run build",
"precommit": "npm run lint",
"release": "./scripts/release.sh",
"start-watch": "watch \"npm run build\" src",
"start": "parallelshell \"npm run start-watch\" \"http-server -p 5000 -c-1 -o\"",
"test": "npm run lint && karma start"
},
"semistandard": {
"globals": [ "expect", "L", "XMLHttpRequest", "sinon", "xhr", "proj4" ]
}
}