-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 2.03 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
{
"name": "cures-condec-bitbucket",
"version": "1.1.0",
"description": "[![Build Status](https://travis-ci.org/cures-hub/cures-condec-bitbucket.svg?branch=master)](https://travis-ci.org/cures-hub/cures-condec-bitbucket) [![Codacy Badge](https://api.codacy.com/project/badge/Grade/bd8ee189f9e7474e850c60fa81b50d11)](https://www.codacy.com/app/UHD/cures-condec-bitbucket?utm_source=github.com&utm_medium=referral&utm_content=cures-hub/cures-condec-bitbucket&utm_campaign=Badge_Grade) [![Codecoverage](https://codecov.io/gh/cures-hub/cures-condec-bitbucket/branch/master/graph/badge.svg)](https://codecov.io/gh/cures-hub/cures-condec-bitbucket/branch/master)",
"main": "index.js",
"dependencies": {
"semantic-release-cli": "^5.0.0"
},
"devDependencies": {
"commitizen": "^4.0.3",
"cz-conventional-changelog": "^3.3.0",
"cz-jira-commit": "^0.2.3",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"prettier-plugin-java": "^1.6.2",
"semantic-release": "^19.0.3",
"standard-version": "^9.5.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"full-release": "npx semantic-release",
"release": "standard-version",
"commit": "git cz",
"lint:js": "eslint . --ext .js",
"lint:fix": "npm run lint:js -- --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cures-hub/cures-condec-bitbucket.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/cures-hub/cures-condec-bitbucket/issues"
},
"homepage": "https://github.com/cures-hub/cures-condec-bitbucket#readme",
"config": {
"commitizen": {
"path": "./node_modules/cz-jira-commit"
}
},
"lint-staged": {
"src/**/*.{js}": [
"eslint . --ext .js",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}