-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1017 Bytes
/
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
{
"name": "gommitjs",
"version": "1.4.3",
"description": "A Nodejs wrapper for the gommit command line tool.",
"main": "./lib/index.js",
"files": [
"templates",
"npm-scripts",
"lib",
"bin",
"LICENSE"
],
"directories": {
"bin": "bin",
"lib": "lib"
},
"bin": {
"gommitjs": "./bin/gommitjs"
},
"repository": {
"type": "git",
"url": "https://github.com/dschnare/gommitjs.git"
},
"bugs": {
"url": "https://github.com/dschnare/gommitjs/issues"
},
"scripts": {
"test": "mocha ./lib/**/*.test.js",
"postinstall": "node ./npm-scripts/postinstall"
},
"keywords": [
"commit",
"standard",
"git",
"hook",
"message"
],
"author": "Darren Schnare <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=6"
},
"devDependencies": {
"eslint": "^3.15.0",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-promise": "^3.4.1",
"eslint-plugin-standard": "^2.0.1",
"mocha": "^3.2.0"
}
}