-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.26 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
{
"name": "semantic-release-gh-docker",
"version": "0.0.0-development",
"description": "",
"main": "server.js",
"scripts": {
"test": "jest",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "https://github.com/dmitry-zaets/semantic-release-gh-docker.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/dmitry-zaets/semantic-release-gh-docker/issues"
},
"homepage": "https://github.com/dmitry-zaets/semantic-release-gh-docker#readme",
"devDependencies": {
"commitlint": "^17.0.3",
"eslint": "^8.22.0",
"husky": "^8.0.1",
"jest": "^28.1.3",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"semantic-release": "^19.0.3"
},
"publishConfig": {
"access": "restricted"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"post-merge": "git diff-tree -r --name-only --no-commit-id ORIG_HEAD HEAD | grep package.json && npm install"
}
},
"lint-staged": {
"*.{json,md}": [
"prettier --write"
],
"*.js": [
"prettier --write",
"eslint --fix",
"git add"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}