forked from Esri/esri-leaflet-geocoder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.51 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-geocoder",
"description": "Esri Geocoding utility and search plugin for Leaflet.",
"version": "2.2.9",
"author": "Patrick Arlt <[email protected]> (http://patrickarlt.com)",
"contributors": [
"Patrick Arlt <[email protected]> (http://patrickarlt.com)",
"John Gravois <[email protected]> (http://johngravois.com)"
],
"dependencies": {
"esri-leaflet": "^2.0.3",
"leaflet": "^1.0.0"
},
"devDependencies": {
"chai": "3.5.0",
"gh-release": "^2.0.0",
"http-server": "^0.10.0",
"imagemin": "^3.2.0",
"isparta": "^4.0.0",
"istanbul": "^0.4.2",
"karma": "^1.3.0",
"karma-chai-sinon": "^0.1.3",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.1",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.1",
"karma-sourcemap-loader": "^0.3.5",
"mkdirp": "^0.5.1",
"mocha": "^3.1.0",
"node-sass": "^3.2.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": "https://github.com/Esri/esri-leaflet-geocoder",
"jsnext:main": "src/EsriLeafletGeocoding.js",
"jspm": {
"registry": "npm",
"format": "es6",
"main": "src/EsriLeafletGeocoding.js"
},
"license": "Apache-2.0",
"main": "dist/esri-leaflet-geocoder-debug.js",
"browser": "dist/esri-leaflet-geocoder-debug.js",
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "[email protected]:Esri/esri-leaflet-geocoder.git"
},
"scripts": {
"prebuild": "mkdirp dist",
"build": "rollup -c profiles/debug.js & rollup -c profiles/production.js & npm run css & npm run img",
"css": "node-sass ./src/esri-leaflet-geocoder.css ./dist/esri-leaflet-geocoder.css --output-style compressed",
"img": "imagemin ./src/img ./dist/img",
"lint": "semistandard | snazzy",
"prepare": "npm run build",
"pretest": "npm run build",
"release": "./scripts/release.sh",
"start-watch": "watch \"npm run build\" src",
"start": "parallelshell \"npm run start-watch\" \"http-server -p 5678 -c-1 -o\"",
"test": "npm run lint && karma start"
},
"semistandard": {
"globals": [
"expect",
"L",
"XMLHttpRequest",
"sinon",
"xhr"
]
},
"style": "./dist/esri-leaflet-geocoder.css"
}