forked from piceaTech/node-gitlab-2-github
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.1 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.1 KB
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
{
"name": "gitlab-2-github",
"version": "0.1.5",
"description": "Migrate Issues, Wiki from gitlab to github",
"main": "index.js",
"scripts": {
"start": "babel-node --presets es2015 index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/piceaTech/node-gitlab-2-github.git"
},
"keywords": [
"github",
"gitlab",
"import",
"export",
"issue",
"issues"
],
"author": "Spruce, <dev@spruce.de>",
"license": "MIT",
"bugs": {
"url": "https://github.com/piceaTech/node-gitlab-2-github/issues"
},
"homepage": "https://github.com/piceaTech/node-gitlab-2-github#readme",
"dependencies": {
"@octokit/rest": "^16.1.0",
"async": "^1.4.0",
"gitlab": "^11.5.1",
"request": "^2.88.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"husky": "^3.0.3",
"lint-staged": "^9.2.1",
"prettier": "^1.18.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,json,md}": [
"prettier --write",
"git add"
]
}
}