forked from vercel/release
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.43 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
{
"name": "release",
"version": "1.0.7",
"description": "Manage GitHub Releases from the command line",
"scripts": {
"test": "xo"
},
"files": [
"bin",
"lib"
],
"repository": "zeit/release",
"keywords": [
"github",
"releases",
"cli",
"tags",
"push"
],
"author": "leo",
"license": "MIT",
"bin": {
"release": "./bin/release.js"
},
"xo": {
"esnext": true,
"space": true,
"semicolon": false,
"rules": {
"import/no-dynamic-require": 0,
"unicorn/no-process-exit": 0,
"camelcase": 0
}
},
"engines": {
"node": ">= 7.0.0"
},
"bugs": {
"url": "https://github.com/zeit/release/issues"
},
"homepage": "https://github.com/zeit/release#readme",
"devDependencies": {
"xo": "^0.17.1"
},
"dependencies": {
"args": "^2.2.1",
"async-retry": "^0.2.1",
"capitalize": "^1.0.0",
"chalk": "^1.1.3",
"configstore": "^2.1.0",
"git-commits": "^1.2.0",
"git-repo-name": "^0.6.0",
"git-state": "^3.1.0",
"git-username": "^0.5.0",
"github": "^7.1.0",
"inquirer": "^2.0.0",
"open": "0.0.5",
"ora": "^0.4.0",
"pluralize": "^3.1.0",
"query-string": "^4.2.3",
"random-string": "^0.1.2",
"request": "^2.79.0",
"request-promise-native": "^1.0.3",
"semver": "^5.3.0",
"tagged-versions": "^1.2.0",
"then-sleep": "^1.0.1",
"trim": "0.0.1",
"update-notifier": "^1.0.3"
}
}