-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.23 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
{
"name": "mh-qa-cli",
"description": "A command to get MissionHub QA running",
"version": "0.3.5",
"author": "Spencer Oberstadt @soberstadt",
"bin": {
"mh-qa-cli": "./bin/run"
},
"bugs": "https://github.com/CruGlobal/missionhub-qa-cli/issues",
"dependencies": {
"@oclif/command": "^1",
"@oclif/config": "^1",
"@oclif/plugin-help": "^2",
"@types/inquirer": "^6.5.0",
"@types/listr": "^0.14.2",
"cli-ux": "^5.3.2",
"colors": "^1.3.3",
"inquirer": "^7.0.0",
"listr": "^0.14.3",
"tslib": "^1"
},
"devDependencies": {
"@oclif/tslint": "^3",
"@types/node": "^10",
"ts-node": "^8",
"tslint": "^5",
"typescript": "^3.3"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/lib"
],
"homepage": "https://github.com/CruGlobal/missionhub-qa-cli",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"bin": "mh-qa",
"macos": {
"identifier": "com.missionhub.qa.cli"
}
},
"repository": "CruGlobal/mh-qa-cli",
"scripts": {
"start": "./bin/run",
"posttest": "tslint -p . -t stylish",
"prepack": "rm -rf lib && tsc -b",
"test": "echo NO TESTS"
},
"types": "lib/index.d.ts"
}