-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
77 lines (77 loc) · 2.16 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
{
"name": "list-repos",
"version": "1.0.0",
"description": "List all the repos, their HEADs and clean status in the Current Directory or the Supplied Directory",
"main": "dist/index.cjs",
"type": "commonjs",
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"build": "rollup --config",
"typecheck": "tsc --noEmit --checkJs false",
"prepare": "husky install",
"pre-commit": "yarn test && lint-staged && yarn run typecheck && yarn build"
},
"types": "./index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/pankajpatel/list-repos.git"
},
"keywords": [
"git",
"cli"
],
"bin": "dist/index.cjs",
"author": "Pankaj Patel <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/pankajpatel/list-repos/issues"
},
"homepage": "https://github.com/pankajpatel/list-repos#readme",
"dependencies": {
"chalk": "~4.1.2",
"cli-spinner": "^0.2.5",
"cli-table": "^0.3.4",
"git-state": "^4.1.0",
"minimist": "^1.2.0",
"typescript": "^5.0.0",
"update-notifier": "^6.0.0"
},
"devDependencies": {
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-typescript": "^12.0.0",
"@types/cli-spinner": "^0.2.1",
"@types/cli-table": "^0.3.0",
"@types/jest": "^29.0.0",
"@types/minimist": "^1.2.2",
"@types/update-notifier": "^6.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^9.0.0",
"jest": "^29.0.0",
"lint-staged": "^15.0.0",
"prettier": "3.4.2",
"rollup": "^4.0.0",
"rollup-plugin-build-statistics": "^0.0.19",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-preserve-shebang": "^1.0.1",
"rollup-plugin-shebang": "^0.1.5",
"ts-jest": "^29.0.0",
"type-fest": "^4.0.0"
},
"lint-staged": {
"*.js": [
"eslint",
"prettier --ignore-unknown --write"
]
},
"packageManager": "[email protected]"
}