forked from graphhopper/directions-api-js-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.13 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
{
"name": "graphhopper-js-api-client",
"version": "0.13.0",
"description": "A Javascript Client for GraphHopper",
"author": "GraphHopper Community",
"license": "Apache-2.0",
"main": "dist/graphhopper-client.js",
"scripts": {
"watch": "watchify src/main-template.js -o dist/graphhopper-client.js --debug --verbose",
"bundle": "browserify src/main-template.js -o dist/graphhopper-client.js",
"bundleDebug": "browserify src/main-template.js --debug -o dist/graphhopper-client.js",
"bundleProduction": "browserify -g uglifyify src/main-template.js | derequire > dist/graphhopper-client.js",
"test": "JASMINE_CONFIG_PATH=spec/jasmine.json jasmine"
},
"browserify": {
"transform": [
"browserify-swap"
]
},
"dependencies": {
"bluebird": "3.5.5",
"superagent": "5.0.6"
},
"devDependencies": {
"browserify": "16.2.3",
"browserify-swap": "0.2.2",
"derequire": "2.0.6",
"jasmine": "3.4.0",
"jshint": "2.10.2",
"uglifyify": "5.0.2",
"watchify": "3.11.1"
},
"repository": {
"type": "git",
"url": "git://github.com/graphhopper/directions-api-js-client.git"
}
}