-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
66 lines (66 loc) · 1.77 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
{
"name": "@haiku/cli",
"version": "5.1.1",
"description": "Haiku CLI",
"main": "lib/index.js",
"scripts": {
"lint": "tslint -p tsconfig.all.json -t stylish",
"lint-report": "yarn lint -t checkstyle -o checkstyle-result.xml",
"fix": "yarn lint --fix",
"ts": "cross-env NODE_ENV=test ts-node -r tsconfig-paths/register -P tsconfig.all.json",
"test": "yarn ts ./node_modules/.bin/tape 'test/**/*.test.ts' | tap-spec",
"test-report": "nyc yarn ts ./node_modules/.bin/tape 'test/**/*.test.ts' > test-result.tap",
"compile": "tsc",
"develop": "tsc --watch"
},
"bin": {
"haiku": "./bin/haiku"
},
"authors": [
"Zack Brown <[email protected]>",
"Matthew Trost <[email protected]>"
],
"files": [
"bin/**/*",
"lib/**/*",
"src/**/*"
],
"license": "MIT",
"dependencies": {
"@haiku/sdk-client": "5.1.1",
"@haiku/sdk-inkstone": "5.1.1",
"async": "^2.5.0",
"chalk": "^2.4.2",
"cli-color": "^1.2.0",
"dedent": "^0.7.0",
"fs-extra": "^4.0.2",
"hasbin": "^1.2.3",
"inquirer": "^3.0.6",
"lodash": "^4.17.4",
"mkdirp": "^0.5.1",
"prepend-file": "^1.3.1",
"request": "^2.83.0",
"semver": "^5.4.1",
"tail": "^1.2.1",
"yargs": "^6.6.0"
},
"devDependencies": {
"@types/cli-color": "^0.3.29",
"@types/inquirer": "0.0.32",
"@types/mkdirp": "^0.3.29",
"@types/request": "^2.0.0",
"@types/yargs": "^6.5.0",
"cross-env": "^5.1.6",
"istanbul-reporter-cobertura-haiku": "^1.0.2",
"nyc": "^13.0.1",
"tap-spec": "^4.1.2",
"tape": "^4.9.0",
"ts-node": "^6.1.0",
"tsconfig-paths": "^3.3.2",
"tslint": "^5.11.0",
"tslint-config-haiku": "^1.0.16",
"typescript": "^3.0.3",
"leaked-handles": "^5.2.0",
"haiku-testing": "5.1.1"
}
}