-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1021 Bytes
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1021 Bytes
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
{
"name": "husky_research",
"version": "1.79.0",
"description": "",
"main": "index.js",
"scripts": {
"release": "standard-version --no-verify"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "npm run release && git add ."
}
},
"standard-version": {
"skip": {
"commit": true
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/navi2581/husky_research.git"
},
"author": "Naveen Kolla",
"license": "ISC",
"bugs": {
"url": "https://github.com/navi2581/husky_research/issues"
},
"homepage": "https://github.com/navi2581/husky_research#readme",
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"grunt-bump": "^0.8.0",
"husky": "^3.0.1",
"lint-staged": "^9.2.1",
"prettier-eslint": "^9.0.0",
"standard-version": "^6.0.1"
}
}