-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
47 lines (47 loc) · 1.11 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
{
"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/pmowrer/semantic-release-github-pr.git",
"scripts": {
"format": "prettier --write --single-quote --trailing-comma es5",
"format:all": "yarn format \"./**/*.js\"",
"test": "jest"
},
"bin": "./bin/semantic-release-github-pr.js",
"license": "MIT",
"peerDependencies": {
"semantic-release": ">=16.0.0 < 20"
},
"dependencies": {
"debug": "^4.1.1",
"execa": "^4.0.0",
"github": "^13.0.0",
"parse-github-url": "^1.0.2",
"ramda": "^0.26.1",
"read-pkg": "^5.2.0",
"semantic-release-plugin-decorators": "^3.0.0"
},
"devDependencies": {
"husky": "^4.2.1",
"jest": "^25.1.0",
"lint-staged": "^10.0.3",
"prettier": "^1.19.1",
"semantic-release": "^19"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"yarn format"
]
}
}