-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.53 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
{
"name": "@codastic/release",
"version": "1.9.1",
"description": "A collection of release and changelog management script you can easily use via NPM.",
"scripts": {
"changes": "./bin/update-changelog.js --dry-run --link-commit https://github.com/codastic/release/commit/:commit .",
"prerelease": "npm run -s test && ./bin/update-changelog.js --link-commit https://github.com/codastic/release/commit/:commit .",
"release": "./bin/release.js .",
"postrelease": "npm publish . --access public",
"test": "eslint ."
},
"bin": {
"release-github": "./bin/release-github.js",
"release": "./bin/release.js",
"update-changelog": "./bin/update-changelog.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codastic/release.git"
},
"keywords": [
"node",
"npm",
"changelog",
"release",
"versioning"
],
"engines": {
"node": ">=8.0.0",
"npm": ">=6.0.0"
},
"author": "Codastic <[email protected]>",
"contributors": [
"Mario Volke <[email protected]>",
"Christian Ranz <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/codastic/release/issues"
},
"homepage": "https://github.com/codastic/release#readme",
"devDependencies": {
"eslint": "^6.1.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-import": "^2.18.2"
},
"dependencies": {
"@octokit/rest": "^16.0.5",
"minimist": "^1.2.5",
"prompt": "^1.0.0",
"prompts": "^2.3.0",
"readline": "^1.3.0",
"semver": "^5.6.0"
}
}