-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.73 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.73 KB
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
{
"name": "github-semantic-version",
"version": "7.6.0",
"description": "Automated semantic version releases powered by Github Issues.",
"bin": {
"github-semantic-version": "dist/cli.js",
"gsv": "dist/cli.js"
},
"files": [
"dist",
"labels.json"
],
"gsv": {
"startVersion": "2.0.0",
"majorLabel": "Version: Major",
"minorLabel": "Version: Minor",
"patchLabel": "Version: Patch",
"internalLabel": "No version: Internal"
},
"scripts": {
"predist": "rimraf dist",
"dist": "babel src -d dist",
"release": "node dist/cli.js --bump --changelog --push --publish",
"prerelease": "npm run dist",
"test": "mocha",
"test:watch": "mocha --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ericclemmons/github-semantic-version.git"
},
"keywords": [
"semver",
"release",
"version",
"automated",
"publish",
"github",
"changelog"
],
"author": "Eric Clemmons <eric@smarterspam.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ericclemmons/github-semantic-version/issues"
},
"homepage": "https://github.com/ericclemmons/github-semantic-version#readme",
"dependencies": {
"@octokit/rest": "^15.1.9",
"babel-runtime": "^6.26.0",
"chalk": "^2.3.2",
"debug": "^3.1.0",
"fs-extra": "^5.0.0",
"lodash": "^4.17.5",
"meow": "^4.0.0",
"moment": "^2.21.0",
"ora": "^2.0.0",
"semver": "^5.5.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"babel-register": "^6.26.0",
"expect": "^22.4.0",
"mocha": "^5.0.4",
"rimraf": "^2.6.2"
}
}