-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.38 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
{
"name": "soss-cli",
"version": "0.1.5",
"description": "Command line interface for California Hydrogen Station Operational Status System",
"main": "build/src/cli.js",
"bin": {
"soss": "build/src/cli.js"
},
"scripts": {
"test": "mocha -r ts-node/register src/**/*.spec.ts --timeout 40000",
"check": "gts check",
"clean": "gts clean",
"compile": "tsc -p .",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run check"
},
"preferGlobal": true,
"keywords": [
"hydrogen",
"fuel-cell",
"soss",
"cafcp"
],
"pre-commit": [
"check",
"test"
],
"author": {
"name": "Michael Wei"
},
"license": "Apache-2.0",
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/mocha": "^2.2.48",
"chai": "^4.1.2",
"cli-tester": "^2.0.0",
"gts": "^0.5.3",
"mocha": "^5.0.1",
"pre-commit": "^1.2.2",
"ts-node": "^5.0.0",
"typescript": "~2.6.1"
},
"dependencies": {
"@types/fs-extra": "^5.0.1",
"@types/node-geocoder": "^3.19.0",
"@types/ora": "^1.3.1",
"@types/table": "^4.0.4",
"commander": "^2.14.1",
"fs-extra": "^5.0.0",
"geocontext": "^0.1.2",
"geolib": "^2.0.24",
"node-geocoder": "^3.22.0",
"npm": "^5.7.1",
"ora": "^2.0.0",
"root-require": "^0.3.1",
"soss": "^0.1.0",
"table": "^4.0.3"
}
}