-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
51 lines (51 loc) · 1.35 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
{
"name": "fit-commit-js",
"version": "0.3.2",
"description": "A npm package to validate commits according to community guidelines",
"author": "Daniela Valero",
"license": "GPL-2.0",
"main": "bin/fit-commit-js.js",
"bin": {
"fit-commit-js": "./bin/fit-commit-js.js"
},
"repository": {
"type": "git",
"url": "https://github.com/DanielaValero/fit-commit-js"
},
"bugs": {
"url": "https://github.com/DanielaValero/fit-commit-js/issues"
},
"scripts": {
"lint": "eslint lib/**/*.js && eslint test/lib/**/*.js",
"test": "NODE_ENV=test mocha --harmony --recursive --ui tdd --reporter dot",
"watch": "NODE_ENV=test mocha debug --recursive --watch --reporter dot --harmony",
"debugTest": "NODE_ENV=test node-debug _mocha --recursive --ui tdd --reporter dot"
},
"engines": {
"node": ">=4.7.0"
},
"keywords": [
"git",
"commit",
"fit-commit",
"fit-commit-js"
],
"dependencies": {
"git-rev-sync": "^1.4.0",
"is-my-json-valid": "^2.13.1",
"js-yaml": "^3.4.6",
"ramda": "^0.22.1",
"npmlog": "^4.0.0",
"debug": "^2.2.0"
},
"devDependencies": {
"chai": "^3.4.1",
"eslint": "^3.6.1",
"eslint-config-airbnb-base": "^11.0.0",
"eslint-plugin-import": "^2.2.0",
"git-rev": "^0.2.1",
"mocha": "^3.2.0",
"proxyquire": "^1.7.3",
"sinon": "^1.17.2"
}
}