-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.08 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
{
"name": "fixmyrail-weird-angles-processing",
"private": true,
"description": "tbd",
"version": "0.0.0",
"keywords": [],
"repository": "OpenRailFoundation/fixmyrail-weird-angles",
"bugs": "https://github.com/OpenRailFoundation/fixmyrail-weird-angles/issues",
"main": "src/index.js",
"files": [
"src/*",
"!src/*.test.js"
],
"type": "module",
"devDependencies": {
"ava": "^5.3.1",
"depcheck": "^1.4.3",
"eslint": "^8.19.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-promise": "^6.0.0"
},
"scripts": {
"check-deps": "depcheck",
"lint": "eslint src",
"fix": "npm run lint -- --fix",
"test": "npm run lint && npm run check-deps && ava"
},
"engines": {
"node": ">=16"
},
"license": "ISC",
"dependencies": {
"@turf/bearing": "^6.5.0",
"@turf/distance": "^6.5.0",
"@turf/helpers": "^6.5.0",
"get-stdin": "^9.0.0",
"graphlib": "^2.1.8",
"load-json-file": "^7.0.1",
"lodash": "^4.17.21",
"mapbox": "^1.0.0-beta10",
"point-in-polygon": "^1.1.0",
"xml-js": "^1.6.11"
}
}