-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
43 lines (43 loc) · 1.05 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
{
"name": "lrm-esri",
"version": "1.0.0-beta.1",
"description": "an Esri route provider for Leaflet Routing Machine",
"main": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "browserify -t browserify-shim src/* > dist/lrm-esri.js",
"start-watch": "watch \"npm run build\" src",
"start": "npm run start-watch & http-server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jgravois/lrm-esri.git"
},
"keywords": [
"esri",
"routing",
"leaflet",
"esri-leaflet"
],
"author": "john gravois",
"browser": {
"request": "xhr"
},
"license": "Apache-2.0",
"browserify-shim": {
"leaflet": "global:L",
"leaflet-routing-machine": "global:Routing"
},
"bugs": {
"url": "https://github.com/jgravois/lrm-esri/issues"
},
"homepage": "https://github.com/jgravois/lrm-esri#readme",
"devDependencies": {
"browserify": "^14.0.0",
"browserify-shim": "^3.8.13",
"watch": "^1.0.1"
},
"dependencies": {
"xhr": "^2.5.0"
}
}