-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
84 lines (84 loc) · 2.24 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
{
"name": "gh-project-migrator",
"version": "1.3.1",
"description": "Application that helps you move your GitHub project boards between repositories and organizations.",
"main": "dist/index.js",
"bin": {
"gh-project-migrator": "dist/index.js"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist/"
],
"dependencies": {
"@octokit/graphql": "^4.5.8",
"commander": "^7.0.0",
"date-fns": "^2.16.1",
"inquirer": "^7.3.3",
"node-fetch": "^2.6.1",
"open": "^7.3.1",
"yaml": "^2.2.2"
},
"devDependencies": {
"@octokit/types": "^6.3.1",
"@types/inquirer": "^7.3.1",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.21",
"@types/node-fetch": "^2.5.8",
"@typescript-eslint/eslint-plugin": "^4.13.0",
"@typescript-eslint/parser": "^4.13.0",
"@vercel/ncc": "^0.27.0",
"copyfiles": "^2.4.1",
"dotenv": "^8.2.0",
"eslint": "^7.18.0",
"eslint-plugin-jest": "^24.1.3",
"jest": "^26.6.3",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
},
"scripts": {
"build": "rimraf build && tsc -b && copyfiles -Vu 1 src/graphql/**/* build",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"lint-fix": "eslint src/**/*.ts --fix",
"test": "echo \"Error: no test specified\" && exit 1",
"postversion": "git push && git push --tags",
"start": "node build/cli.js",
"build-start": "npm run build && npm start",
"package": "ncc build --source-map src/cli.ts -o dist && copyfiles -Vu 1 build/graphql/**/* dist"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"npm run lint-fix",
"npm run format",
"npm run build"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/froi/github-project-migrator.git"
},
"keywords": [
"github",
"projects",
"migration",
"cli"
],
"author": "Froilán Irizarry Rivera",
"license": "Apache 2.0",
"bugs": {
"url": "https://github.com/froi/github-project-migrator/issues"
},
"homepage": "https://froi.dev/github-project-migrator/"
}