-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
114 lines (114 loc) · 2.62 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "gprj",
"description": "Clean & simple CLI git multi project manager",
"version": "1.1.3",
"author": "Dolf Barr @dolfbarr",
"bin": {
"gprj": "./bin/run"
},
"main": "dist/index.js",
"bugs": "https://github.com/dolfbarr/gprj/issues",
"dependencies": {
"@oclif/core": "^1",
"@oclif/plugin-help": "^5",
"@oclif/plugin-plugins": "^2.0.1",
"@oclif/plugin-version": "^1.0.4",
"@types/execa": "2.0.0",
"@types/listr": "0.14.4",
"@types/lodash": "^4.14.171",
"@types/lowdb": "1.0.9",
"@types/update-notifier": "^5.1.0",
"chalk": "4.1.1",
"execa": "5.1.1",
"figures": "3.2.0",
"listr": "0.14.3",
"lodash": "^4.17.21",
"lowdb": "1.0.0",
"simple-git": "^3.7.1",
"update-notifier": "^5.1.0"
},
"devDependencies": {
"@types/jest": "^27",
"@types/mock-fs": "^4.13.1",
"@types/node": "^16.9.4",
"cross-env": "7.0.3",
"eslint": "^7.32.0",
"eslint-config-oclif": "^4",
"eslint-config-oclif-typescript": "^1",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-sort-keys-fix": "^1.1.1",
"globby": "^11",
"jest": "^27",
"mock-fs": "^5.0.0",
"np": "^7.6.2",
"oclif": "^2",
"pre-commit": "1.2.2",
"rimraf": "^3.0.2",
"shx": "^0.3.3",
"ts-jest": "^27",
"ts-node": "^10.2.1",
"tslib": "^2.3.1",
"typescript": "4.4.3"
},
"engines": {
"node": ">=12.9.0"
},
"files": [
"/bin",
"/dist",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/dolfbarr/gprj",
"keywords": [
"oclif",
"cli",
"git",
"project",
"git cli",
"repository",
"github",
"gitlab",
"bitbucket"
],
"license": "MIT",
"oclif": {
"commands": "./dist/commands",
"bin": "gprj",
"hooks": {
"init": [
"./dist/hooks/init/db",
"./dist/hooks/init/update"
]
},
"plugins": [
"@oclif/plugin-version"
],
"additionalHelpFlags": [
"-h"
],
"additionalVersionFlags": [
"-v"
]
},
"repository": "dolfbarr/gprj",
"scripts": {
"postpack": "shx rm -f oclif.manifest.json",
"posttest": "yarn lint",
"prepack": "yarn build && oclif manifest && oclif readme",
"lint": "eslint . --ext .ts --config .eslintrc.js",
"lint:fix": "yarn lint --fix",
"test": "jest",
"test:coverage": "jest --coverage",
"version": "oclif readme && git add README.md",
"build": "shx rm -rf dist && tsc -b",
"release": "np"
},
"types": "dist/index.d.ts",
"pre-commit": [
"test"
],
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}