forked from urbica/galton
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 898 Bytes
/
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
{
"name": "galton",
"version": "5.15.1",
"description": "lightweight isochrone server",
"author": "Stepan Kuzmin <[email protected]> (stepankuzmin.ru)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/urbica/galton.git"
},
"bin": {
"galton": "./index.js"
},
"main": "src/server.js",
"scripts": {
"docs": "documentation build src/* -g --markdown-toc false -f md -o API.md",
"lint": "eslint .",
"start": "node index.js",
"test": "jest"
},
"dependencies": {
"isochrone": "^2.0.1",
"minimist": "^1.2.0",
"osrm": "5.15.1"
},
"devDependencies": {
"@mapbox/geojsonhint": "^2.0.1",
"documentation": "^5.3.5",
"eslint": "^4.16.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"jest": "^22.1.4",
"supertest": "^3.0.0",
"tape": "^4.8.0"
}
}