-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.28 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
57
58
59
60
61
62
63
{
"name": "kbme",
"version": "2.1.0",
"description": "Gather kanban metrics from your JIRA instance",
"main": "lib/index.js",
"bin": {
"kbme": "cli.js"
},
"engines": {
"node": ">=7.6"
},
"repository": {
"type": "git",
"url": "https://github.com/ricardocasares/kbme.git"
},
"bugs": {
"url": "https://github.com/ricardocasares/kbme/issues"
},
"author": "Ricardo Casares",
"license": "ISC",
"dependencies": {
"debug": "^4.1.0",
"dotenv": "^7.0.0",
"got": "^9.2.0",
"mri": "^1.1.0"
},
"devDependencies": {
"cz-conventional-changelog": "^2.1.0",
"husky": "^1.3.1",
"jest": "^24.0.0",
"lint-staged": "^8.1.0"
},
"scripts": {
"test": "jest --coverage",
"test:watch": "jest --watch",
"release": "npx semantic-release@beta",
"commit": "npx git-cz",
"format": "npx prettier --write **/*.js"
},
"release": {
"plugins": [
"@semantic-release/npm",
"@semantic-release/github",
"@semantic-release/release-notes-generator"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"npm run format",
"git add"
]
}
}