-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
90 lines (90 loc) · 1.98 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "semantic-release-cli",
"description": "setup automated semver compliant package publishing",
"version": "0.0.0-development",
"author": "Christoph Witzko <[email protected]> (http://christophwitzko.com)",
"bin": {
"semantic-release-cli": "./bin/semantic-release.js"
},
"dependencies": {
"base32": "0.0.6",
"clipboardy": "^2.0.0",
"git-config-path": "^2.0.0",
"github-url-from-git": "^1.4.0",
"ini": "^1.3.4",
"inquirer": "^7.0.0",
"js-yaml": "^3.3.1",
"lodash": "^4.16.4",
"nopt": "^4.0.0",
"npm": "^6.0.0",
"npm-profile": "^4.0.1",
"npmlog": "^4.0.0",
"p-retry": "^4.0.0",
"parse-git-config": "^3.0.0",
"parse-github-repo-url": "^1.0.0",
"pify": "^4.0.0",
"request": "^2.85.0",
"request-debug": "^0.2.0",
"request-promise": "^4.1.1",
"travis-ci": "^2.1.1",
"tweetsodium": "^0.0.5",
"update-notifier": "^3.0.0",
"user-home": "^2.0.0",
"validator": "^13.7.0"
},
"devDependencies": {
"ava": "^2.0.0",
"nyc": "^14.0.0",
"rimraf": "^3.0.0",
"semantic-release": "^19.0.3",
"xo": "^0.29.0"
},
"engines": {
"node": ">=7.6",
"npm": ">=3"
},
"files": [
"bin",
"src"
],
"keywords": [
"automation",
"changelog",
"publish",
"release",
"semver",
"version"
],
"license": "MIT",
"main": "src/index.js",
"nyc": {
"include": [
"src/**/*.js"
],
"reporter": [
"json",
"text",
"html"
],
"all": true
},
"preferGlobal": true,
"prettier": {
"printWidth": 120,
"trailingComma": "es5"
},
"repository": "https://github.com/semantic-release/cli",
"scripts": {
"codecov": "codecov -f coverage/coverage-final.json",
"lint": "xo",
"pretest": "npm run lint",
"semantic-release": "semantic-release",
"test": "nyc ava -v",
"test:ci": "nyc ava -v",
"travis-deploy-once": "travis-deploy-once"
},
"xo": {
"prettier": true,
"space": true
}
}