-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
45 lines (45 loc) · 1.14 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
{
"name": "@mapbox/graph-normalizer",
"version": "3.1.3",
"description": "Takes nodes and ways and turn them into a normalized graph of intersections and ways.",
"main": "./index.js",
"engines": {
"node": "14.16"
},
"scripts": {
"test": "npm run lint && tap -R spec test/*.test.js",
"lint": "eslint '*.js' './**/*.js'",
"fix": "eslint --fix '*.js' './**/*.js'",
"bench": "for f in `ls ./bench/*.bench.js`; do node $f; done"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mapbox/graph-normalizer.git"
},
"keywords": [
"graph"
],
"author": "benjamintd",
"license": "ISC",
"dependencies": {
"byline": "^5.0.0",
"concat-stream": "^1.5.2",
"graceful-fs": "^4.1.9",
"minimist": "^1.2.0",
"through2": "^2.0.1",
"turf-linestring": "^1.0.2"
},
"devDependencies": {
"benchmark": "^2.1.2",
"eslint": "^4.18.2",
"eslint-config-mourner": "^2.0.1",
"tap": "^14.6.1"
},
"bugs": {
"url": "https://github.com/mapbox/graph-normalizer/issues"
},
"homepage": "https://github.com/mapbox/graph-normalizer#readme",
"directories": {
"test": "test"
}
}