-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathpackage.json
86 lines (86 loc) · 2.02 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
85
86
{
"name": "galton",
"version": "5.19.0-beta.2",
"description": "lightweight isochrone server",
"author": "Stepan Kuzmin <to.stepan.kuzmin@gmail.com> (stepankuzmin.ru)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/urbica/galton.git"
},
"bugs": {
"url": "https://github.com/urbica/galton/issues"
},
"keywords": [
"isochrone",
"drivetime",
"walktime",
"geojson",
"polygon",
"osrm"
],
"snyk": true,
"engine-strict": true,
"engines": {
"node": ">=8"
},
"bin": {
"galton": "./index.js"
},
"main": "src/server.js",
"scripts": {
"cz": "git-cz",
"docs": "documentation build src/* -g --markdown-toc false -f md -o API.md",
"lint": "eslint .",
"start": "node index.js",
"test": "jest",
"precommit": "lint-staged",
"release": "standard-version",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect",
"prepublish": "npm run snyk-protect"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.js": [
"prettier-eslint --write",
"yarn lint",
"git add"
]
},
"dependencies": {
"docopt": "^0.6.2",
"isochrone": "^3.0.2",
"koa": "^2.7.0",
"koa-router": "^7.4.0",
"ora": "^3.4.0",
"osm-extractor": "^1.0.0",
"osrm": "5.19.0",
"osrm-bindings": "^1.2.0",
"select-shell": "^1.1.2",
"snyk": "^1.232.0"
},
"devDependencies": {
"@mapbox/geojsonhint": "^3.0.0",
"commitizen": "^3.1.1",
"cz-conventional-changelog": "^2.1.0",
"documentation": "^11.0.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-import": "^2.17.2",
"husky": "^2.3.0",
"jest": "^24.8.0",
"lint-staged": "^8.1.7",
"prettier": "^1.17.1",
"prettier-eslint": "^8.8.2",
"prettier-eslint-cli": "^4.7.1",
"standard-version": "^6.0.1",
"supertest": "^4.0.2",
"tape": "^4.10.1"
}
}