-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
84 lines (84 loc) · 1.96 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@compare/github",
"description": "Compare github repositories in terminal.",
"version": "3.0.2",
"author": "Yasuaki Uechi <y@uechi.io> (https://uechi.io/)",
"scripts": {
"build": "tsc",
"clean": "shx rm lib",
"coverage": "cat ./coverage/lcov.info | coveralls",
"format": "prettier --write 'src/**/*.ts'",
"lint": "tslint --project tsconfig.json --fix",
"prepublishOnly": "yarn build",
"test": "jest --coverage"
},
"dependencies": {
"bytes": "^3.1.0",
"chalk": "^4.0.0",
"cli-table": "^0.3.1",
"date-fns": "^2.9.0",
"markdown-table": "^2.0.0",
"minimist": "^1.2.0",
"node-fetch": "^2.1.2",
"ora": "^4.0.1"
},
"devDependencies": {
"@types/bytes": "^3.0.0",
"@types/cli-table": "^0.3.0",
"@types/jest": "^26.0.3",
"@types/minimist": "^1.2.0",
"@types/node": "^14.0.14",
"@types/node-fetch": "^2.1.7",
"coveralls": "^3.0.3",
"husky": "^4.2.1",
"jest": "^26.1.0",
"lint-staged": "^10.0.3",
"nock": "^13.0.2",
"prettier": "^2.0.2",
"pretty-quick": "^2.0.0",
"shx": "^0.3.2",
"ts-jest": "^26.1.1",
"ts-node": "^8.6.2",
"tslint": "^6.0.0",
"typescript": "^3.9.6"
},
"types": "lib/util.d.ts",
"main": "lib/util.js",
"bin": {
"compare-github": "lib/cli.js",
"gh-compare": "lib/cli.js"
},
"files": [
"lib/cli.js",
"lib/cli.d.ts",
"lib/util.js",
"lib/util.d.ts"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged && pretty-quick --staged",
"pre-push": "yarn test"
}
},
"lint-staged": {
"*.ts": [
"tslint --fix",
"git add"
]
},
"repository": {
"url": "https://github.com/uetchy/compare-github.git",
"type": "git"
},
"bugs": {
"url": "https://github.com/uetchy/compare-github/issues"
},
"homepage": "https://github.com/uetchy/compare-github",
"keywords": [
"cli",
"compare",
"github"
],
"license": "MIT",
"preferGlobal": true
}