-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.12 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.12 KB
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "jira-precommit-hook",
"version": "4.0.0",
"description": "Git commit hook to verify commit messages are tagged with a JIRA issue number",
"main": "lib/index.js",
"scripts": {
"build": "rm -rf lib && babel src --out-dir lib",
"lint": "eslint ./",
"prepublish": "npm run test && npm run build",
"test": " npm run lint && mocha",
"install": "node bin/install"
},
"bin": {
"jira-precommit": "./bin/jira-precommit"
},
"keywords": [
"jira",
"git",
"precommit-hook"
],
"author": "Matthew L Smith <mtscout6@gmail.com>",
"contributors": [
"Curtis Knox",
"Karl Thompson",
"Matthew Radcliffe",
"Steven Tran",
"Devin Wall",
"Trevor Martz",
"Matt Smith"
],
"files": [
"bin",
"hooks",
"lib",
"LICENSE",
"README.md"
],
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.2.0",
"babel-core": "^6.3.13",
"babel-eslint": "^6.0.0-beta.6",
"babel-plugin-add-module-exports": "^0.1.1",
"babel-plugin-transform-runtime": "^6.4.0",
"babel-preset-es2015": "^6.1.18",
"babel-preset-stage-0": "^6.1.18",
"chai": "^3.2.0",
"chai-as-promised": "^5.0.0",
"eslint": "^2.2.0",
"eslint-config-exchange-solutions": "6.0.0",
"mocha": "^2.2.4",
"rimraf": "^2.3.4",
"sinon": "^1.14.1",
"sinon-as-promised": "^4.0.0",
"sinon-chai": "^2.7.0"
},
"dependencies": {
"argparse": "^1.0.7",
"babel-runtime": "^6.3.13",
"boxen": "^0.5.0",
"chalk": "^1.1.1",
"child-process-promise": "^2.0.1",
"configstore": "^2.0.0",
"es6-promise": "^3.0.2",
"fs-promise": "^0.5.0",
"jira-client": "^3.0.0",
"lodash": "^4.0.0",
"request-promise": "^3.0.0",
"window-size": "^0.2.0",
"wordwrap": "^1.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TWExchangeSolutions/jira-precommit-hook.git"
},
"bugs": {
"url": "https://github.com/TWExchangeSolutions/jira-precommit-hook/issues"
},
"engines": {
"node": ">=4.2.3",
"npm": ">=2.13.1"
},
"homepage": "https://github.com/TWExchangeSolutions/jira-precommit-hook#readme"
}