-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.58 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
{
"name": "hub-clone-tool",
"version": "1.0.13",
"description": "A little helper to clone github repos",
"main": "lib/index.js",
"bin": {
"hct": "./lib/index.js",
"hub-clone-tool": "./lib/index.js"
},
"scripts": {
"start": "ts-node-dev --respawn --debug --transpile-only src/index.ts",
"build": "tsc -p .",
"check": "npm run compile && npm run lint:all",
"compile:watch": "tsc --watch --noEmit --skipLibCheck",
"compile": "tsc --noEmit --skipLibCheck",
"lint": "tslint --project .",
"lint:fix": "tslint --project . --fix",
"prettify": "prettier --write $(find src -name '*.ts')"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/paul-ridgway/hub-clone-tool.git"
},
"keywords": [
"github",
"clone"
],
"author": "Paul Ridgway",
"license": "MIT",
"bugs": {
"url": "https://github.com/paul-ridgway/hub-clone-tool/issues"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=6.0.0"
},
"homepage": "https://github.com/paul-ridgway/hub-clone-tool#readme",
"dependencies": {
"@octokit/rest": "^18.12.0",
"@types/inquirer": "^6.5.0",
"@types/listr": "^0.14.9",
"@types/parse-git-config": "^3.0.4",
"@types/zen-observable": "^0.8.7",
"chalk": "^4.1.2",
"inquirer": "^7.3.3",
"install": "^0.13.0",
"listr": "^0.14.3",
"npm": "^10.1.0",
"parse-git-config": "^3.0.0",
"rxjs": "^6.6.7",
"simple-git": "^3.21.0"
},
"devDependencies": {
"@types/node": "^14.17.21",
"ts-node": "^8.10.2",
"ts-node-dev": "^1.1.8",
"typescript": "^3.9.10"
}
}