-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.33 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
{
"name": "@zazen/semantic-release",
"version": "0.1.3",
"description": "Automate releases, free of weariness and confusion",
"keywords": [
"semantic-release",
"shareable config"
],
"homepage": "https://github.com/stormwarning/zazen-semantic-release",
"repository": "stormwarning/zazen-semantic-release",
"license": "ISC",
"author": "Jeff <[email protected]> (https://tidaltheory.co)",
"main": "index.js",
"scripts": {
"lint": "eslint '**/*.js'",
"test": "npm run lint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"package.json": [
"prettier --write",
"git add"
]
},
"dependencies": {
"@semantic-release/changelog": "5.0.0",
"@semantic-release/git": "9.0.0",
"@semantic-release/github": "7.0.4",
"@semantic-release/npm": "7.0.4",
"@zazen/conventional-changelog": "1.0.5"
},
"devDependencies": {
"@zazen/eslint-config": "2.0.x",
"eslint": "6.8.x",
"husky": "4.2.x",
"lint-staged": "10.0.x",
"prettier": "1.19.x",
"prettier-plugin-packagejson": "2.0.x",
"semantic-release": "17.0.x",
"travis-deploy-once": "5.0.x"
},
"peerDependencies": {
"semantic-release": ">=16"
},
"release": {
"extends": "./index.js"
}
}