forked from tehshane/semantic-release-github-pr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.12 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
{
"name": "semantic-release-github-pr",
"version": "0.0.0-development",
"description": " A `semantic-release` plugin that creates a changelog comment on Github PRs.",
"main": "src/index.js",
"files": [
"src",
"bin"
],
"repository": "https://github.com/Updater/semantic-release-github-pr.git",
"scripts": {
"format": "prettier --write --single-quote --trailing-comma es5",
"format:all": "yarn format \"./**/*.js\"",
"precommit": "lint-staged",
"test": "jest"
},
"bin": "./bin/semantic-release-github-pr.js",
"license": "MIT",
"peerDependencies": {
"semantic-release": "13.4.1 - 15.13.x"
},
"dependencies": {
"env-ci": "^3.2.0",
"execa": "^0.8.0",
"github": "^12.1.0",
"parse-github-url": "^1.0.1",
"ramda": "^0.25.0",
"read-pkg": "^3.0.0",
"semantic-release": "^15.13.12",
"semantic-release-plugin-decorators": "^2.0.0"
},
"devDependencies": {
"debug": "^3.1.0",
"husky": "^0.14.3",
"jest": "^22.0.4",
"lint-staged": "^6.0.0",
"prettier": "^1.8.2"
},
"lint-staged": {
"*.js": [
"yarn format",
"git add"
]
}
}