-
Notifications
You must be signed in to change notification settings - Fork 139
/
package.json
60 lines (60 loc) · 1.41 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
{
"name": "gitlab-2-github",
"version": "0.1.5",
"description": "Migrate Issues, Wiki from gitlab to github",
"main": "index.js",
"scripts": {
"prepare": "husky install",
"start": "node node_modules/ts-node/dist/bin.js ./src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/piceaTech/node-gitlab-2-github.git"
},
"keywords": [
"github",
"gitlab",
"import",
"export",
"issue",
"issues"
],
"author": "Spruce, <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/piceaTech/node-gitlab-2-github/issues"
},
"homepage": "https://github.com/piceaTech/node-gitlab-2-github#readme",
"dependencies": {
"@gitbeaker/node": "^35.1.0",
"@octokit/plugin-throttling": "^3.5.2",
"@octokit/rest": "^18.12.0",
"@octokit/types": "^6.34.0",
"aws-sdk": "^2.1053.0",
"axios": "^1.6.0",
"mime-types": "^2.1.34",
"readline-sync": "^1.4.10",
"ts-node": "^10.4.0"
},
"devDependencies": {
"@types/mime-types": "^2.1.1",
"@types/node": "^14.18.5",
"@types/readline-sync": "^1.4.4",
"husky": "^7.0.4",
"lint-staged": "^13.2.1",
"prettier": "^2.5.1",
"tsconfig-paths": "^3.12.0",
"typescript": "^3.9.6"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,json,md}": [
"prettier --write",
"git add"
]
}
}