-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 1.12 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
{
"name": "github-sonic-screwdriver",
"version": "0.1.0",
"description": "CLI tool for GitHub",
"main": "./dist/bin/gh-sonic-screwdriver.js",
"bin": {
"gh-sonic-screwdriver": "./dist/bin/gh-sonic-screwdriver.js"
},
"scripts": {
"build": "npx tsc",
"watch": "npx tsc -w",
"test": "echo \"Error: no test specified\" && exit 1",
"prepack": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sthima/github-sonic-screwdriver.git"
},
"author": "Matheus Marchini <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/sthima/github-sonic-screwdriver/issues"
},
"homepage": "https://github.com/sthima/github-sonic-screwdriver#readme",
"dependencies": {
"chalk": "^2.3.2",
"ghauth": "^3.2.1",
"graphql-request": "^1.5.1",
"moment": "^2.21.0",
"moment-business-days": "^1.0.6",
"omelette": "^0.4.5",
"ora": "^2.0.0",
"yargs": "^11.0.0"
},
"devDependencies": {
"@types/node": "^9.6.2",
"@types/ora": "^1.3.4",
"@types/yargs": "^11.0.0",
"tape": "^4.9.0",
"typescript": "^2.8.1"
}
}