-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
58 lines (58 loc) · 1.54 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": "@omio-labs/pr-review-bot",
"version": "0.0.0",
"description": "Auto PR reviwer bot",
"main": "./build/index.js",
"bin": {
"pr-review-bot": "./build/index.js"
},
"repository": "[email protected]:omio-labs/pr-reviewer-bot.git",
"author": "",
"license": "SEE LICENSE IN LICENSE.md",
"scripts": {
"test": "jest",
"lint": "eslint ./src/**/*",
"gulp": "gulp",
"start": "ts-node src/index.ts",
"build": "tsc --project ./tsconfig.json",
"typecheck": "tsc --project ./tsconfig.json --noEmit",
"publish": "semantic-release"
},
"dependencies": {
"@actions/core": "^1.2.4",
"@actions/github": "^1.1.0",
"axios": "^0.19.2",
"js-yaml": "^3.13.1",
"lodash": "^4.17.19",
"xml2js": "^0.4.23"
},
"devDependencies": {
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/github": "^7.0.1",
"@types/jest": "^25.1.1",
"@types/js-yaml": "^3.12.2",
"@types/lodash": "^4.14.149",
"@types/node": "^13.7.0",
"@types/xml2js": "^0.4.5",
"@typescript-eslint/eslint-plugin": "^2.18.0",
"@typescript-eslint/parser": "^2.18.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-json": "^2.0.1",
"jest": "^25.1.0",
"semantic-release": "^17.0.2",
"ts-jest": "^25.5.1",
"typescript": "3.7.5"
},
"files": [
"build",
"package.json",
"package-lock.json"
],
"jest": {
"preset": "ts-jest",
"rootDir": "test"
}
}