-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
executable file
·76 lines (76 loc) · 2.35 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
{
"name": "esri-leaflet-gp",
"description": "A Leaflet plugin for interacting with ArcGIS geoprocessing services.",
"version": "3.0.0",
"author": "John Gravois <[email protected]> (http://johngravois.com)",
"browser": "dist/esri-leaflet-gp-debug.js",
"bugs": {
"url": "https://github.com/jgravois/esri-leaflet-gp/issues"
},
"contributors": [
"John Gravois <[email protected]> (http://johngravois.com)",
"Nicholas Furness <[email protected]> (http://nixta.github.io/)",
"Patrick Arlt <[email protected]> (http://patrickarlt.com)",
"Rowan Winsemius"
],
"peerDependencies": {
"leaflet": "*",
"esri-leaflet": "*"
},
"devDependencies": {
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^7.1.3",
"chai": "2.3.0",
"esri-leaflet": "^3.0.3",
"gh-release": "^6.0.1",
"highlight.js": "^11.3.1",
"http-server": "^14.0.0",
"isparta": "^4.1.1",
"istanbul": "^0.4.2",
"karma": "^6.3.8",
"karma-chai-sinon": "^0.1.3",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.3",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2",
"karma-phantomjs-launcher": "^1.0.4",
"karma-sourcemap-loader": "^0.3.5",
"leaflet": "^1.0.0",
"mkdirp": "^0.5.1",
"mocha": "^9.1.3",
"rollup": "^2.60.0",
"rollup-plugin-json": "^2.0.0",
"rollup-plugin-node-resolve": "^1.4.0",
"rollup-plugin-uglify": "^6.0.4",
"semistandard": "^16.0.1",
"sinon": "^6.3.5",
"sinon-chai": "^3.7.0",
"snazzy": "^9.0.0",
"uglify-js": "^2.6.1",
"watch": "^1.0.2"
},
"homepage": "https://github.com/jgravois/esri-leaflet-gp",
"jsnext:main": "src/EsriLeafletGP.js",
"jspm": {
"registry": "npm",
"format": "es6",
"main": "src/EsriLeafletGP.js"
},
"license": "Apache-2.0",
"main": "dist/esri-leaflet-gp-debug.js",
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "https://github.com/jgravois/esri-leaflet-gp.git"
},
"scripts": {
"prebuild": "mkdirp dist",
"build": "rollup -c profiles/debug.js & rollup -c profiles/production.js",
"lint": "semistandard src/**/*.js | snazzy",
"prepublish": "npm run build",
"pretest": "npm run build",
"test": "npm run lint && karma start",
"release": "./scripts/release.sh",
"start": "watch 'npm run build' src & http-server -p 5000 -c-1 -o"
}
}