forked from pmowrer/semantic-release-monorepo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1 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
{
"name": "semantic-release-nx",
"version": "1.0.0",
"description": "Configuration for `semantic-release` allowing it to be used with Nx.",
"main": "src/index.js",
"files": [
"src"
],
"scripts": {
"format": "prettier --write --single-quote --trailing-comma es5",
"format:all": "yarn format \"./**/*.js\"",
"test": "jest"
},
"license": "MIT",
"peerDependencies": {
"semantic-release": ">=15.11.x"
},
"dependencies": {
"debug": "^3.1.0",
"p-limit": "^1.2.0",
"pkg-up": "^2.0.0",
"ramda": "^0.25.0",
"read-pkg": "^5.0.0",
"semantic-release-monorepo": "^7.0.5",
"semantic-release-plugin-decorators": "^3.0.0"
},
"devDependencies": {
"husky": "^4.2.1",
"jest": "^25.1.0",
"lint-staged": "^10.0.7",
"prettier": "^1.19.1",
"semantic-release": "^17.0.2",
"semantic-release-github-pr": "^6.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"yarn format"
]
}
}