-
Notifications
You must be signed in to change notification settings - Fork 80
/
package.json
50 lines (50 loc) · 1.13 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
48
49
50
{
"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",
"type": "module",
"files": [
"src"
],
"scripts": {
"format": "prettier --write --single-quote --trailing-comma es5",
"format:all": "yarn format \"./**/*.js\"",
"test": "vitest run --no-threads"
},
"license": "MIT",
"peerDependencies": {
"semantic-release": ">=22.0.7"
},
"dependencies": {
"debug": "^4.3.4",
"execa": "^5.1.1",
"file-url": "^3.0.0",
"fs-extra": "^10.0.1",
"get-stream": "^6.0.1",
"git-log-parser": "^1.2.0",
"p-each-series": "^2.1.0",
"p-limit": "^3.1.0",
"pkg-up": "^3.1.0",
"ramda": "^0.27.2",
"read-pkg": "^5.2.0",
"semantic-release-plugin-decorators": "^4.0.0",
"tempy": "1.0.1"
},
"devDependencies": {
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^3.2.4",
"vitest": "0.34.6"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"yarn format"
]
}
}