-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.1 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
{
"version": "1.0.0",
"name": "cya-git",
"description": "Check your git commit messages for valid Jira issue keys.",
"main": "lib/index.js",
"scripts": {
"start": "babel-node src/index.js",
"lint": "eslint .",
"transpile": "babel src -d lib",
"chmod": "chmod +x lib/commit-msg.js",
"build": "npm run transpile && npm run chmod",
"prepublish": "npm run build"
},
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"babel-register": "^6.9.0"
},
"dependencies": {
"colors": "^1.1.2",
"jira-query": "^1.0.1"
},
"license": "ISC",
"directories": {
"test": "test"
},
"preferGlobal": "true",
"bin": {
"cya-git": "lib/index.js"
},
"description": "installs a git hook to validate commit messages version: [unreleased][CHANGELOG]",
"repository": {
"type": "git",
"url": "git+https://github.com/classflow/cya-git.git"
},
"author": "Jeremy Greer <[email protected]>",
"bugs": {
"url": "https://github.com/classflow/cya-git/issues"
},
"homepage": "https://github.com/classflow/cya-git#readme"
}