-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
44 lines (44 loc) · 1000 Bytes
/
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
{
"name": "sharedstreets-speeds",
"version": "1.0.3",
"main": "index.js",
"repository": "[email protected]:sharedstreets/sharedstreets-speeds.git",
"author": "Kevin Webb <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=11.0.0"
},
"bin": {
"shst-speeds": "./bin/run"
},
"files": [
"*"
],
"oclif": {
"commands": "./build/",
"bin": "shst-speeds",
"plugins": [
"@oclif/plugin-help"
]
},
"scripts": {
"pretest": "tsc",
"prepack": "rm -rf build && tsc && oclif-dev manifest",
"test": "tsc && colortape build/test_core.js",
"bench": "tsc && node bench.js"
},
"dependencies": {
"@oclif/command": "^1.5.13",
"@oclif/config": "^1.13.0",
"@oclif/plugin-help": "^2.1.6",
"@turf/helpers": "^6.1.4",
"chalk": "^2.4.2",
"cli-progress": "^2.1.1",
"sharedstreets": "^0.12.0"
},
"devDependencies": {
"@oclif/dev-cli": "^1.22.0",
"ts-node": "^8.1.0",
"typescript": "^3.4.5"
}
}