forked from vercel/release
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.5 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
73
74
75
{
"name": "release",
"version": "4.0.0",
"description": "Generate changelogs with a single command",
"scripts": {
"precommit": "lint-staged",
"test": "xo"
},
"files": [
"bin",
"lib"
],
"repository": "zeit/release",
"keywords": [
"github",
"releases",
"cli",
"tags",
"push"
],
"author": "leo",
"license": "MIT",
"bin": {
"release": "./bin/release.js"
},
"xo": {
"extends": [
"prettier"
],
"rules": {
"no-await-in-loop": 0
}
},
"lint-staged": {
"*.js": [
"npm test",
"prettier --single-quote --no-semi --write",
"git add"
]
},
"devDependencies": {
"eslint-config-prettier": "2.9.0",
"husky": "0.14.3",
"lint-staged": "6.1.0",
"prettier": "1.10.2",
"xo": "0.18.2"
},
"dependencies": {
"@octokit/rest": "14.0.9",
"@zeit/check-updates": "1.1.0",
"args": "3.0.8",
"async-retry": "1.1.4",
"capitalize": "1.0.0",
"chalk": "2.3.1",
"configstore": "3.1.1",
"escape-goat": "1.3.0",
"fs-extra": "5.0.0",
"git-repo-name": "0.6.0",
"git-spawned-stream": "1.0.0",
"git-state": "4.0.0",
"git-username": "0.5.0",
"github-username": "4.1.0",
"inquirer": "5.1.0",
"node-version": "1.1.0",
"open": "0.0.5",
"ora": "1.4.0",
"pluralize": "7.0.0",
"random-string": "0.2.0",
"request": "2.83.0",
"request-promise-native": "1.0.5",
"semver": "5.5.0",
"tagged-versions": "1.3.0",
"then-sleep": "1.0.1"
}
}