forked from pmowrer/semantic-release-monorepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.66 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "semantic-release-monorepo",
"version": "0.0.0-development",
"description": "Plugins for `semantic-release` allowing it to be used with a monorepo.",
"type": "module",
"main": "src/index.js",
"publishConfig": {
"access": "public"
},
"files": [
"src"
],
"scripts": {
"lint": "eslint --ignore-path .eslintignore --ext .js,.ts,.cjs .",
"lint:fix": "npm run lint -- --fix",
"prettier": "prettier \"**/*.{ts,js,jsx,css,cjs,json}\"",
"prettier:fix": "prettier \"**/*.{ts,js,jsx,css,cjs,json}\" --write",
"test": "jest"
},
"license": "MIT",
"peerDependencies": {
"semantic-release": ">=15.11.x"
},
"dependencies": {
"semantic-release-plugin-decorators": "^4.0.0",
"debug": "^3.1.0",
"execa": "^0.8.0",
"file-url": "^3.0.0",
"fs-extra": "^10.0.1",
"get-stream": "^6.0.1",
"git-log-parser": "^1.2.0",
"minipass": "^3.3.6",
"p-each-series": "^2.1.0",
"p-limit": "^1.2.0",
"pkg-up": "^2.0.0",
"ramda": "^0.25.0",
"read-pkg": "^5.0.0",
"tempy": "1.0.1"
},
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"babel-jest": "^29.5.0",
"eslint": "^8.35.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^4.2.1",
"jest": "^25.5.4",
"lint-staged": "^10.0.7",
"prettier": "^2.8.4",
"semantic-release": "^17.0.2",
"semantic-release-github-pr": "^6.0.0",
"shelljs": "^0.8.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"npm run prettier:fix"
]
}
}