-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
64 lines (64 loc) · 1.91 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
{
"name": "esri-leaflet-related",
"description": "A Leaflet plugin that allows users to query related tables.",
"version": "3.0.0",
"author": "John Gravois <[email protected]> (http://johngravois.com)",
"contributors": [
"John Gravois <[email protected]> (http://johngravois.com)"
],
"dependencies": {
"leaflet": "^1.0.0",
"esri-leaflet": "^3.0.0"
},
"devDependencies": {
"@rollup/plugin-json": "^4.0.3",
"@rollup/plugin-node-resolve": "^7.1.3",
"chai": "2.3.0",
"gh-release": "^6.0.0",
"highlight.js": "^10.4.1",
"http-server": "^0.12.3",
"isparta": "^4.1.1",
"istanbul": "^0.4.2",
"karma": "^6.3.3",
"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": "^1.0.4",
"karma-sourcemap-loader": "^0.3.5",
"mkdirp": "^0.5.1",
"mocha": "^5.2.0",
"phantomjs": "^1.9.17",
"rollup": "^2.0.0",
"rollup-plugin-uglify": "^6.0.4",
"semistandard": "^16.0.0",
"sinon": "^1.11.1",
"sinon-chai": "2.7.0",
"uglify-js": "^2.4.23",
"watch": "^0.17.1"
},
"homepage": "https://esri.github.io/esri-leaflet/",
"jsnext:main": "src/EsriLeafletRelated.js",
"jspm": {
"registry": "npm",
"format": "es6",
"main": "src/EsriLeafletRelated.js"
},
"license": "Apache-2.0",
"main": "dist/esri-leaflet-debug.js",
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "[email protected]:jgravois/esri-leaflet-related.git"
},
"scripts": {
"lint": "semistandard src/*.js",
"prebuild": "mkdirp dist",
"build": "rollup -c profiles/debug.js & rollup -c profiles/production.js",
"prepublish": "npm run build",
"release": "./scripts/release.sh",
"pretest": "npm run build",
"test": "npm run lint && karma start",
"start": "watch 'npm run build' src & http-server -p 5000 -c-1 -o"
}
}