forked from Esri/esri-leaflet-geocoder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.58 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.58 KB
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
{
"name": "esri-leaflet-geocoder",
"description": "Esri Geocoding utility and search plugin for Leaflet.",
"version": "2.2.14",
"author": "Patrick Arlt <parlt@esri.com> (http://patrickarlt.com)",
"contributors": [
"Patrick Arlt <parlt@esri.com> (http://patrickarlt.com)",
"John Gravois <jgravois@esri.com> (http://johngravois.com)",
"Patrick McKinney"
],
"dependencies": {
"esri-leaflet": "^2.1.4",
"leaflet": "^1.0.0"
},
"devDependencies": {
"chai": "3.5.0",
"gh-release": "^3.4.0",
"http-server": "^0.10.0",
"imagemin": "^5.3.1",
"isparta": "^4.0.0",
"istanbul": "^0.4.2",
"karma": "^3.1.3",
"karma-chai-sinon": "^0.1.3",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.2",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.1",
"karma-sourcemap-loader": "^0.3.5",
"mkdirp": "^0.5.1",
"mocha": "^5.2.0",
"node-sass": "^4.11.0",
"npm-run-all": "^4.1.2",
"rollup": "^0.56.5",
"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"
},
"files": [
"src/**/*.js",
"dist/**"
],
"homepage": "https://github.com/Esri/esri-leaflet-geocoder",
"jsnext:main": "src/EsriLeafletGeocoding.js",
"module": "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": "git@github.com: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": "node scripts/build_images.js",
"lint": "semistandard | snazzy",
"prepare": "npm run build",
"release": "./scripts/release.sh",
"start-watch": "watch \"npm run build\" src",
"start": "run-p start-watch serve",
"serve": "http-server -p 5000 -c-1 -o",
"test": "npm run build && npm run lint && karma start"
},
"semistandard": {
"globals": [
"expect",
"L",
"XMLHttpRequest",
"sinon",
"xhr"
]
},
"style": "./dist/esri-leaflet-geocoder.css"
}