-
Notifications
You must be signed in to change notification settings - Fork 80
/
Copy pathpackage.json
38 lines (38 loc) · 957 Bytes
/
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
{
"name": "semantic-release-monorepo",
"version": "0.0.0-development",
"description": "Plugins for `semantic-release` allowing it to be used with a monorepo.",
"main": "src/index.js",
"scripts": {
"format": "prettier --write --single-quote --trailing-comma es5",
"format:all": "yarn format \"./**/*.js\"",
"precommit": "lint-staged",
"test": "jest"
},
"license": "MIT",
"peerDependencies": {
"semantic-release": "13.4.1 - 15.x.x"
},
"dependencies": {
"debug": "^3.1.0",
"execa": "^0.8.0",
"pkg-up": "^2.0.0",
"ramda": "^0.25.0",
"read-pkg": "^3.0.0",
"semantic-release-plugin-decorators": "^1.2.1"
},
"devDependencies": {
"husky": "^0.14.3",
"jest": "^21.2.1",
"lint-staged": "^6.0.0",
"prettier": "^1.9.2",
"semantic-release": "^15.0.0",
"semantic-release-github-pr": "^4.0.1"
},
"lint-staged": {
"*.js": [
"yarn format",
"git add"
]
}
}