forked from pmowrer/semantic-release-plugin-decorators
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 825 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
{
"name": "@kaptard/semantic-release-plugin-decorators",
"version": "1.0.1",
"main": "src/index.js",
"repository": "https://github.com/cubic-js/semantic-release-plugin-decorators",
"scripts": {
"format": "prettier --write --single-quote --trailing-comma es5",
"format:all": "yarn format \"./**/*.js\"",
"precommit": "lint-staged",
"test": "jest"
},
"license": "MIT",
"peerDependencies": {
"semantic-release": ">=11"
},
"devDependencies": {
"husky": "^0.14.3",
"jest": "^22.0.4",
"lint-staged": "^6.0.0",
"prettier": "^1.9.2",
"semantic-release": "^15.5.0",
"semantic-release-github-pr": "^5.0.3"
},
"dependencies": {
"import-from": "^2.1.0",
"lodash": "^4.17.4"
},
"lint-staged": {
"*.js": [
"yarn format",
"git add"
]
}
}