forked from Esri/esri-leaflet-geocoder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.4 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
{
"name": "esri-leaflet-geocoder",
"description": "Esri Geocoding utilities and search plguin for Leaflet.",
"version": "2.0.1",
"author": "Patrick Arlt <parlt@esri.com> (http://patrickarlt.com)",
"browserify": {
"transform": [
[
"babelify",
{
"whitelist": [
"es6.modules"
],
"loose": [
"es6.modules"
]
}
]
]
},
"contributors": [
"Patrick Arlt <parlt@esri.com> (http://patrickarlt.com)",
"John Gravois <jgravois@esri.com> (http://johngravois.com)"
],
"dependencies": {
"esri-leaflet": "^2.0.0-beta.4",
"leaflet": "1.0.0-beta.1"
},
"devDependencies": {
"babelify": "^6.1.3",
"chai": "2.3.0",
"gh-release": "^2.0.0",
"http-server": "^0.8.5",
"imagemin": "^3.2.0",
"isparta": "^3.0.3",
"istanbul": "gotwarlost/istanbul.git#source-map",
"karma": "^0.12.24",
"karma-chai-sinon": "^0.1.3",
"karma-coverage": "douglasduteil/karma-coverage#next",
"karma-mocha": "^0.1.0",
"karma-mocha-reporter": "^0.2.5",
"karma-phantomjs-launcher": "^0.1.4",
"karma-sourcemap-loader": "^0.3.5",
"mkdirp": "^0.5.1",
"nodemon": "^1.7.2",
"node-sass": "^3.2.0",
"phantomjs": "^1.9.17",
"rollup": "^0.10.0",
"semistandard": "^7.0.2",
"sinon": "^1.11.1",
"sinon-chai": "2.7.0",
"uglify-js": "^2.4.23"
},
"homepage": "https://github.com/Esri/esri-leaflet-geocoder",
"jsnext:main": "src/EsriLeafletGeocoding.js",
"jspm": {
"files": [
"src/**/*.js",
"dist/**/*"
],
"registry": "npm",
"format": "es6"
},
"license": "Apache-2.0",
"main": "src/EsriLeafletGeocoding.js",
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "git@github.com:Esri/esri-leaflet-geocoder.git"
},
"scripts": {
"prebuild": "mkdirp dist",
"build": "node ./scripts/build.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 src/**/*.js",
"prepublish": "npm run build",
"pretest": "npm run build",
"release": "node ./scripts/release.sh",
"serve": "nodemon --watch src --exec 'npm run build' & http-server -p 5678 -c-1 -o",
"test": "npm run lint && karma start"
},
"style": "./dist/esri-leaflet-geocoder.css"
}