-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.53 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
{
"name": "git-stalker",
"version": "1.0.0",
"description": "Stalk GitHub users without leaving your terminal",
"main": "./dist/cli.js",
"bin": {
"stalk": "./dist/cli.js"
},
"author": {
"name": "Sahil Bondre",
"email": "[email protected]",
"url": "https://sahil.surge.sh"
},
"scripts": {
"watch": "tsc -w",
"build": "tsc",
"start": "yarn build && node dist/cli.js",
"lint": "eslint '**/*.ts' --fix && prettier --write '**/*.ts'"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"yarn lint"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/godcrampy/git-stalker.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/godcrampy/git-stalker/issues"
},
"homepage": "https://github.com/godcrampy/git-stalker#readme",
"keywords": [
"cli-app",
"cli",
"github",
"down",
"check",
"up",
"status"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.29.0",
"@typescript-eslint/parser": "^2.29.0",
"eslint": "^6.8.0",
"husky": "^4.2.5",
"lint-staged": "^10.1.7",
"prettier": "^2.0.5"
},
"dependencies": {
"@types/clear": "^0.1.0",
"@types/figlet": "^1.2.0",
"@types/node": "^13.13.2",
"@types/node-emoji": "^1.8.1",
"@types/node-fetch": "^2.5.7",
"chalk": "^4.0.0",
"clear": "^0.1.0",
"figlet": "^1.3.0",
"node-emoji": "^1.10.0",
"node-fetch": "^2.6.0",
"typescript": "^3.8.3"
}
}