-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.36 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
52
53
54
55
56
57
58
59
{
"name": "katulong",
"version": "0.0.0-development",
"description": "A npm script runner to make tooling easier between projects",
"keywords": [
"katulong",
"build",
"task",
"runner",
"coverage",
"lint",
"preview",
"test"
],
"repository": {
"type": "git",
"url": "https://github.com/rodoabad/katulong.git"
},
"author": "Rodo Abad <rodoabad@gmail.com> (https://github.com/rodoabad)",
"license": "MIT",
"bugs": {
"url": "https://github.com/rodoabad/katulong/issues"
},
"homepage": "https://github.com/rodoabad/katulong#readme",
"engines": {
"node": ">=6"
},
"config": {
"ghooks": {
"commit-msg": "validate-commit-msg",
"pre-push": "npm run test"
}
},
"dependencies": {
"yargs": "^7.0.2"
},
"devDependencies": {
"chance": "^1.0.4",
"code": "^4.0.0",
"eslint": "^3.8.1",
"eslint-config-rodoabad": "^1.13.1",
"ghooks": "^2.0.0",
"mocha": "^3.1.2",
"mocha-clean": "^1.0.0",
"semantic-release": "^6.3.2",
"shelljs": "^0.7.4",
"sinon": "^2.0.0",
"validate-commit-msg": "^2.8.2"
},
"bin": {
"katulong": "bin/katulong.js"
},
"main": "index.js",
"scripts": {
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"pretest": "eslint bin src test --cache",
"test": "mocha ./test/unit"
}
}