-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
58 lines (58 loc) · 1.62 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
{
"name": "@codecoach/cli",
"version": "1.0.0",
"main": "src/app.ts",
"author": "codeleague",
"repository": "https://github.com/codeleague/codecoach.git",
"bugs": "https://github.com/codeleague/codecoach/issues/new",
"homepage": "https://github.com/codeleague/codecoach",
"license": "MIT",
"scripts": {
"lint": "eslint \"src/**/*.{js,ts}\" --quiet --fix",
"lint-ci": "eslint \"src/**/*.{js,ts}\"",
"format": "prettier --write \"src/**/*.{js,ts}\"",
"test": "jest",
"build": "tsc --project tsconfig.build.json",
"dev": "nodemon --inspect=5858 --config ./nodemon.json -- --config=\"config-test.json\"",
"prepublishOnly": "yarn build"
},
"bin": {
"codecoach": "dist/app.js"
},
"files": [
"dist/**/*"
],
"engines": {
"node": ">=14.0.0"
},
"devDependencies": {
"@jscpd/finder": "^3.5.5",
"@octokit/types": "^6.34.0",
"@types/jest": "^26.0.18",
"@types/js-yaml": "^4.0.0",
"@types/node": "^14.14.11",
"@types/rimraf": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"eslint": "^7.15.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-sonarjs": "^0.5.0",
"jest": "^26.4.0",
"nodemon": "^2.0.6",
"prettier": "^2.2.1",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"typescript": "^4.1.2"
},
"dependencies": {
"@gitbeaker/rest": "^39.10.2",
"@octokit/core": "^3.2.4",
"@octokit/rest": "^18.12.0",
"rimraf": "^3.0.2",
"slash": "^3.0.0",
"winston": "^3.3.3",
"xml-js": "^1.6.11",
"yargs": "^16.2.0"
}
}