forked from pmowrer/semantic-release-plugin-decorators
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 932 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
39
40
{
"name": "@decisiv/semantic-release-plugin-decorators",
"version": "0.0.0-development",
"main": "src/index.js",
"repository": "https://github.com/Decisiv/semantic-release-plugin-decorators.git",
"scripts": {
"format": "prettier --write --single-quote --trailing-comma es5",
"format:all": "yarn format \"./**/*.js\"",
"precommit": "lint-staged",
"test": "jest"
},
"license": "MIT",
"release": {
"branch": "master"
},
"publishConfig": {
"access": "public"
},
"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"
]
}
}