-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
62 lines (62 loc) · 1.16 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
{
"name": "npmpub",
"version": "5.1.1",
"description": "`npm publish` on steroid",
"keywords": [
"cli-app",
"cli",
"npm",
"publish",
"git",
"push",
"version",
"bump",
"commit"
],
"author": "Maxime Thirouin",
"license": "MIT",
"repository": "https://github.com/MoOx/npmpub.git",
"bin": {
"npmpub": "bin.js"
},
"files": [
"bin.js",
"npmpub.js"
],
"dependencies": {
"chalk": "^1.1.1",
"github-release-from-changelog": "^2.0.0",
"minimist": "^1.2.0",
"shelljs": "^0.8.5",
"trash": "^3.4.1"
},
"devDependencies": {
"eslint": "^6.4.0",
"husky": "^3.0.5",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1"
},
"scripts": {
"pretest": "eslint .",
"test": "echo \"I use myself to publish myself, that's how I test myself.\"",
"release": "./bin.js --verbose --debug"
},
"engines": {
"node": ">=8.0.0"
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 2017
},
"env": {
"node": true,
"es6": true
},
"extends": "eslint:recommended"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}