-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.39 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
{
"name": "rename-repos",
"version": "0.0.0-dev",
"main": "build/index.js",
"bin": "build/index.js",
"description": "CLI tool to rename cloned GitHub repos folder names",
"repository": "https://github.com/zardoy/rename-repos.git",
"author": "Vitaly Turovsky <[email protected]>",
"license": "MIT",
"scripts": {
"prepublishOnly": "tsc",
"local-test": "ts-node src/index.tsx --cwd .."
},
"devDependencies": {
"@types/ini": "^1.3.30",
"@types/minimist": "^1.2.2",
"@types/node": "^15.14.9",
"@types/react": "^17.0.20",
"@zardoy/tsconfig": "^1.2.2",
"ts-node": "^10.2.1",
"typescript": "^4.9.5"
},
"dependencies": {
"@octokit/graphql": "^4.8.0",
"commander": "^8.1.0",
"github-remote-info": "^1.0.3",
"got": "^11.8.2",
"ini": "^2.0.0",
"ink": "^3.0.9",
"ink-inline-progress-bar": "github:zardoy/ink-progress-bar#build",
"ink-select-input": "^4.2.0",
"ink-spinner": "^4.0.2",
"ink-table": "^3.0.0",
"minimist": "^1.2.5",
"react": "^17.0.2",
"read-pkg-up": "^7.0.1"
},
"prettier": {
"semi": false,
"singleQuote": true,
"proseWrap": "never",
"tabWidth": 4,
"trailingComma": "all",
"arrowParens": "avoid",
"printWidth": 150
}
}