-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.26 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.26 KB
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": "sync-github-forks-cli",
"version": "0.1.17",
"description": "Keep github forks up to date using node, the github api and git",
"main": "dist/cli.js",
"bin": {
"sync-github-forks": "dist/cli.js"
},
"scripts": {
"pretest": "npm run build",
"build": "tsc --newline lf",
"test": "npm run lint",
"lint": "tslint -t stylish -c ./tslint.json src/** && tslint -t stylish -c ./jslint.json dist/**/*.js",
"prepublish": "in-publish && npm test || not-in-publish"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/oledid-js/sync-github-forks-cli.git"
},
"keywords": [
"sync",
"github",
"forks",
"node",
"api",
"git",
"fork",
"typescript"
],
"author": "Ole Morten Didriksen <code@oledid.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/oledid-js/sync-github-forks-cli/issues"
},
"homepage": "https://github.com/oledid-js/sync-github-forks-cli#readme",
"devDependencies": {
"@types/bluebird": "^3.0.37",
"@types/node": "^7.0.4",
"tslint": "^4.4.2",
"typescript": "^2.1.6",
"in-publish": "^2.0.0"
},
"dependencies": {
"bluebird": "^3.4.7",
"execa": "^0.6.0",
"sync-github-forks": "^0.1.17"
}
}