-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.48 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
{
"name": "gl2gh",
"version": "1.0.0",
"description": "Migrates GitLab repo(s) to GitHub",
"main": "cli.js",
"bin": {
"gl2gh": "./src/cli.js"
},
"scripts": {
"start": "node src/cli.js",
"test": "nyc --reporter=lcov --reporter=html --reporter=text mocha --recursive --require test/js/util/mochaHelper.js",
"coverage": "codecov",
"lint-fix": "eslint --ignore-path .gitignore --fix .",
"lint": "eslint --ignore-path .gitignore .",
"test-watch": "mocha --recursive --require test/js/util/mochaHelper.js -w",
"test-jenkins": "JUNIT_REPORT_PATH=./test_report.xml mocha --recursive --require test/js/util/mochaHelper.js --colors --reporter mocha-jenkins-reporter",
"build": "npm install && npm link",
"clean": "npm unlink && npm uninstall"
},
"pre-commit": [
"lint",
"test"
],
"author": "aditya-mittal",
"repository": {
"type": "git",
"url": "[email protected]:aditya-mittal/gl2gh.git"
},
"license": "ISC",
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"codecov": "^3.7.2",
"eslint": "^7.4.0",
"mocha": "^7.1.2",
"mocha-jenkins-reporter": "^0.4.3",
"mock-require": "^3.0.3",
"nock": "^12.0.3",
"nyc": "^15.1.0",
"pre-commit": "^1.2.2",
"proxyquire": "^2.1.3",
"sinon": "^9.0.2"
},
"dependencies": {
"axios": "^0.21.1",
"commander": "^5.1.0",
"config": "^3.3.1",
"isomorphic-git": "^1.4.4",
"lodash": "^4.17.21",
"log4js": "^6.3.0"
}
}