forked from sharedstreets/sharedstreets-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
108 lines (108 loc) · 2.86 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "sharedstreets",
"version": "0.15.2",
"description": "SharedStreets, a 'digital commons' for the street",
"main": "build/src/index.js",
"bin": {
"shst": "./bin/run"
},
"engines": {
"node": ">=10.0.0"
},
"files": [
"/oclif.manifest.json",
"/build",
"/bin",
"/src"
],
"oclif": {
"commands": "./build/src/commands",
"bin": "shst",
"plugins": [
"@oclif/plugin-help"
]
},
"scripts": {
"pretest": "tsc",
"prepack": "rm -rf build && tsc && mkdir -p build/src/proto && cp src/proto/*.js build/src/proto/ && oclif-dev manifest",
"test": "tsc && colortape build/test_core.js",
"test-match": "tsc && colortape build/test_match.js",
"test-graph": "tsc && colortape build/test_graph.js",
"docs": "tsc && documentation readme build/index.js --section=API",
"bench": "tsc && node bench.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sharedstreets/sharedstreets-js.git"
},
"keywords": [
"sharedstreets",
"streets",
"highway",
"reference"
],
"author": "SharedStreets",
"contributors": [
"Denis Carriere <@DenisCarriere>",
"Kevin Webb <@kpwebb>",
"Morgan Herlocker <@morganherlocker>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/sharedstreets/sharedstreets-js/issues"
},
"homepage": "https://github.com/sharedstreets/sharedstreets-js#readme",
"devDependencies": {
"@oclif/dev-cli": "^1.22.2",
"@types/benchmark": "*",
"@types/glob": "*",
"@types/node": "*",
"@types/tape": "*",
"benchmark": "^2.1.4",
"colortape": "^0.1.2",
"documentation": "^13.0.0",
"tap": "^14.10.7",
"tape": "*",
"ts-node": "^8.1.0",
"tslint": "*",
"typescript": "^3.9.2"
},
"dependencies": {
"@mapbox/sphericalmercator": "^1.1.0",
"@oclif/command": "^1.5.13",
"@oclif/config": "^1.12.12",
"@oclif/plugin-help": "^2.1.6",
"@turf/along": "^6.0.1",
"@turf/bbox": "^6.0.1",
"@turf/bbox-polygon": "^6.0.1",
"@turf/bearing": "^6.0.1",
"@turf/buffer": "^5.1.5",
"@turf/envelope": "^5.1.5",
"@turf/helpers": "^6.0.1",
"@turf/invariant": "^6.0.1",
"@turf/length": "^6.0.1",
"@turf/line-offset": "^5.1.5",
"@turf/line-slice-along": "^5.1.5",
"@turf/nearest-point-on-line": "^6.0.2",
"@types/leveldown": "^4.0.0",
"@types/levelup": "^3.1.0",
"@types/osrm": "^5.12.0",
"bignumber.js": "7.x",
"chalk": "^2.4.2",
"cli-progress": "^2.1.1",
"const": "^1.0.0",
"expand-tilde": "^2.0.2",
"jkstra": "^0.0.6",
"leveldown": "^5.0.0",
"levelup": "^4.0.1",
"node-fetch": "^2.3.0",
"osrm": "^5.22.0",
"rbush": "^3.0.0",
"sharedstreets-pbf": "^0.8.0",
"sharedstreets-types": "^1.3.1",
"simple-statistics": "^7.0.2",
"tslib": "^1.9.3",
"uuid-by-string": "^2.1.0",
"xml": "^1.0.1"
}
}