-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.18 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.18 KB
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
{
"name": "@mapbox/graph-normalizer",
"version": "4.0.0",
"description": "Takes nodes and ways and turn them into a normalized graph of intersections and ways.",
"main": "./index.js",
"engines": {
"node": "24.2.0"
},
"scripts": {
"test": "npm run lint && tap -R spec test/*.test.js",
"lint": "eslint '*.js' './**/*.js'",
"lint: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": "^2.0.0",
"deep-equal": "^2.2.3",
"graceful-fs": "^4.2.11",
"minimist": "^1.2.6",
"through2": "^4.0.2",
"turf-linestring": "^1.0.2"
},
"devDependencies": {
"benchmark": "^2.1.4",
"eslint": "^9.28.0",
"eslint-config-mourner": "^4.0.2",
"tap": "^21.1.0"
},
"bugs": {
"url": "https://github.com/mapbox/graph-normalizer/issues"
},
"homepage": "https://github.com/mapbox/graph-normalizer#readme",
"directories": {
"test": "test"
}
}