-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.12 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
{
"name": "ghq-migrate",
"version": "1.0.0",
"description": "Migrate local repositories to ghq-style.",
"main": "dist/index.js",
"bin": "bin/ghq-migrate",
"scripts": {
"build": "tsc",
"build:clean": "rm -rf dist tsconfig.tsbuildinfo && tsc",
"run:dev": "ts-node src/index.ts",
"lint": "eslint ./src",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/oboenikui/ghq-migrate.git"
},
"author": "oboenikui",
"license": "Apache License, Version 2.0",
"bugs": {
"url": "https://github.com/oboenikui/ghq-migrate/issues"
},
"homepage": "https://github.com/oboenikui/ghq-migrate#readme",
"dependencies": {
"commander": "^8.3.0",
"simple-git": "^2.48.0"
},
"devDependencies": {
"@babel/preset-env": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.5",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"eslint": "^8.6.0",
"eslint-plugin-jest": "^25.3.3",
"jest": "^27.4.5",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
}
}