-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
36 lines (36 loc) · 1000 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
{
"name": "run-when",
"version": "1.1.0",
"description": "Run tasks based on git diff files ",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"flow": "flow",
"flow:install": "flow-typed install",
"flow:remove": "flow-remove-types --pretty ./src --out-dir ./dist",
"_release": "flow && yarn test && yarn flow:remove && npm version patch && git push --tags && git push && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zzarcon/run-when.git"
},
"author": "zzarcon",
"license": "MIT",
"bugs": {
"url": "https://github.com/zzarcon/run-when/issues"
},
"homepage": "https://github.com/zzarcon/run-when#readme",
"dependencies": {
"multimatch": "^2.1.0"
},
"devDependencies": {
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"flow-bin": "^0.55.0",
"flow-remove-types": "^1.2.1",
"flow-typed": "^2.1.5",
"jest": "^21.1.0"
},
"bin": {
"run-when": "./bin/run-when"
}
}