-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
86 lines (86 loc) · 2.1 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": "isochrone",
"version": "3.0.2",
"description": "isochrone map library",
"author": "Stepan Kuzmin <[email protected]> (stepankuzmin.ru)",
"homepage": "https://github.com/stepankuzmin/node-isochrone",
"license": "MIT",
"main": "index.js",
"scripts": {
"extract": "./node_modules/osrm/lib/binding/osrm-extract",
"contract": "./node_modules/osrm/lib/binding/osrm-contract",
"cz": "git-cz",
"docs": "documentation build index.js -g --markdown-toc false -f md -o API.md",
"lint": "eslint .",
"release": "standard-version",
"test": "node test/index.js"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier-eslint --write",
"npm run lint",
"git add"
]
},
"engine-strict": true,
"engines": {
"node": ">=8"
},
"keywords": [
"isochrone",
"drivetime",
"walktime",
"geojson",
"polygon",
"osrm"
],
"repository": {
"type": "git",
"url": "git://github.com/stepankuzmin/node-isochrone.git"
},
"bugs": {
"url": "https://github.com/stepankuzmin/node-isochrone/issues"
},
"dependencies": {
"@turf/bbox": "6.0.1",
"@turf/destination": "6.0.1",
"@turf/helpers": "6.1.4",
"@turf/point-grid": "6.0.1",
"concaveman": "1.1.1",
"geojson-rewind": "0.3.1",
"turf-deintersect": "1.0.4"
},
"peerDependencies": {
"osrm": "^5.16.4"
},
"devDependencies": {
"@mapbox/geojsonhint": "^3.0.0",
"@turf/area": "6.0.1",
"@turf/intersect": "6.1.3",
"commitizen": "^4.0.3",
"cz-conventional-changelog": "^3.0.2",
"documentation": "^12.1.4",
"eslint": "^6.6.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-import": "^2.18.2",
"husky": "^3.0.9",
"lint-staged": "^9.4.3",
"osrm": "^5.22.0",
"prettier": "^1.19.1",
"prettier-eslint": "^9.0.0",
"prettier-eslint-cli": "^5.0.0",
"standard-version": "^7.0.0",
"tape": "^4.11.0"
}
}