forked from codeleague/codecoach
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.72 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
{
"name": "codecoach",
"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 -- --url=https://github.com/codeleague/codecoach.git --removeOldComment --token=placeyourtokenhere --pr=15 -f='dotnetbuild\\;./sample/dotnetbuild/build.content\\;/repo/src' -o=./tmp/out.json",
"prepublishOnly": "yarn build"
},
"bin": {
"codecoach": "dist/app.js"
},
"files": [
"dist/**/*"
],
"engines": {
"node": ">=14.0.0"
},
"devDependencies": {
"@octokit/types": "^6.1.1",
"@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": {
"@octokit/core": "^3.2.4",
"@octokit/rest": "^18.0.12",
"js-yaml": "^4.1.0",
"rimraf": "^3.0.2",
"slash": "^3.0.0",
"winston": "^3.3.3",
"xml-js": "^1.6.11",
"yargs": "^16.2.0"
}
}