forked from jessedobbelaere/jira-smart-commit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.08 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
{
"name": "jira-smart-commit",
"version": "1.1.1",
"description": "A githook script that transforms commit messages to JIRA smart commits based on branch names",
"author": "Jesse Dobbelaere <[email protected]>",
"license": "MIT",
"main": "index.js",
"scripts": {
"test": "mocha index.spec.js",
"release": "with-package git commit -am pkg.version && with-package git tag pkg.version && git push && npm publish && git push --tags"
},
"engines": {
"node": ">=6.4.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jessedobbelaere/jira-smart-commit.git"
},
"homepage": "https://github.com/jessedobbelaere/jira-smart-commit#readme",
"bugs": {
"url": "https://github.com/jessedobbelaere/jira-smart-commit/issues"
},
"keywords": [
"git",
"jira",
"smart commit",
"husky",
"git hook"
],
"bin": {
"jira-smart-commit": "./index.js"
},
"dependencies": {},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^6.2.0",
"proxyquire": "^2.1.0",
"sinon": "^7.2.2",
"with-package": "^1.0.2"
}
}