-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 994 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 994 Bytes
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
{
"name": "git-trigger",
"version": "0.0.1",
"description": "Watching git branch and trigger commands",
"main": "build/index.js",
"scripts": {
"clean": "del ./build",
"prepublish": "npm run clean && npm run build",
"build": "tsc",
"test": "npm run build && node ./test.js"
},
"files": [
"bin",
"build"
],
"bin": {
"git-trigger": "./bin/git-trigger"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nabeix/git-trigger.git"
},
"author": "Yusuke Watanabe",
"license": "MIT",
"bugs": {
"url": "https://github.com/nabeix/git-trigger/issues"
},
"homepage": "https://github.com/nabeix/git-trigger#readme",
"typings": "build/index.d.ts",
"devDependencies": {
"@types/execa": "^0.9.0",
"@types/fs-extra": "^7.0.0",
"@types/node": "^12.0.0",
"del-cli": "^1.1.0",
"typescript": "^3.4.5"
},
"dependencies": {
"caporal": "^1.2.0",
"execa": "^1.0.0",
"fs-extra": "^8.0.1"
}
}