This repository has been archived by the owner on Oct 23, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.65 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
{
"name": "@spaship/cli",
"description": "A command line interface for SPAship.",
"version": "0.0.12",
"author": "[email protected]",
"bin": {
"spaship": "./bin/run"
},
"homepage": "https://github.com/spaship/cli",
"bugs": "https://github.com/spaship/cli/issues",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "src/index.js",
"repository": "spaship/cli",
"scripts": {
"postpack": "rm -f oclif.manifest.json",
"posttest": "eslint .",
"prepack": "oclif-dev manifest && oclif-dev readme",
"test": "nyc mocha --forbid-only \"test/**/*.test.js\"",
"version": "oclif-dev readme && git add README.md"
},
"dependencies": {
"@oclif/command": "^1.5.19",
"@oclif/config": "^1.13.3",
"@oclif/plugin-help": "^2.2.1",
"@spaship/common": "0.0.x",
"execa": "^2.1.0",
"inquirer": "^7.0.0",
"lodash": "^4.17.15"
},
"devDependencies": {
"@oclif/dev-cli": "^1.22.2",
"@oclif/test": "^1.2.5",
"chai": "^4.2.0",
"eslint": "^5.16.0",
"eslint-config-oclif": "^3.1.0",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-prettier": "^3.1.1",
"globby": "^10.0.1",
"husky": "^3.0.8",
"mocha": "^5.2.0",
"nyc": "^13.3.0",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/npm-shrinkwrap.json",
"/oclif.manifest.json",
"/src"
],
"oclif": {
"commands": "./src/commands",
"bin": "spaship",
"plugins": [
"@oclif/plugin-help"
]
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"publishConfig": {
"access": "public"
}
}