forked from timrogers/gh-migrate-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.4 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
{
"name": "gh-migrate-project",
"version": "0.4.3",
"type": "module",
"description": "Migrate GitHub projects (https://docs.github.com/en/issues/planning-and-tracking-with-projects) between GitHub products, organizations and users",
"homepage": "https://github.com/timrogers/gh-migrate-project",
"scripts": {
"package": "node build.js && npx pkg dist/migrate-project.cjs --out-path bin --targets node18-linux-x64,node18-macos-x64,node18-win-x64",
"lint": "eslint . --ext .ts",
"lint-and-fix": "eslint . --ext .ts --fix",
"dev": "npx ts-node --esm src/index.ts"
},
"author": "Tim Rogers <[email protected]>",
"license": "MIT",
"dependencies": {
"@fast-csv/parse": "^4.3.6",
"@octokit/graphql": "^7.0.2",
"@octokit/plugin-paginate-graphql": "^4.0.0",
"boxen": "^7.1.1",
"chalk": "^5.3.0",
"commander": "^11.1.0",
"octokit": "^3.1.2",
"semver": "^7.5.4",
"undici": "^5.28.2",
"winston": "^3.11.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"esbuild": "^0.19.8",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"pkg": "^5.8.1",
"prettier": "^3.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
},
"repository": {
"type": "git",
"url": "https://github.com/timrogers/gh-migrate-project.git"
}
}