-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
59 lines (59 loc) · 1.22 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": "my-deploy",
"version": "1.3.1",
"description": "A hansome project for deployment",
"main": "./bin/index.js",
"bin": {
"mydeploy": "bin/mydeploy.js"
},
"scripts": {
"start": "node ./bin/mydeploy.js",
"test": "ava --verbose",
"lint": "eslint lib/** ",
"lint-fix": "eslint lib/** --fix",
"commit": "commit-wizard"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kelvv/my-deploy.git"
},
"keywords": [
"deploy",
"reload",
"git",
"githook",
"gitdeploy"
],
"author": "kelvv",
"license": "MIT",
"bugs": {
"url": "https://github.com/kelvv/my-deploy/issues"
},
"homepage": "https://github.com/kelvv/my-deploy#readme",
"dependencies": {
"co": "^4.6.0",
"commander": "^2.9.0",
"jsonfile": "^2.3.1",
"log4js": "^0.6.36",
"update-notifier": "^0.7.0"
},
"devDependencies": {
"ava": "^0.15.2",
"mocha": "^2.5.3",
"pre-git": "^3.9.0",
"should": "^9.0.2"
},
"config": {
"pre-git": {
"commit-msg": "",
"pre-commit": [
"npm run lint-fix",
"git add ."
],
"pre-push": [],
"post-commit": [],
"post-checkout": [],
"post-merge": []
}
}
}