-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.21 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@trolit/patchron",
"version": "1.1.6",
"private": true,
"description": "GitHub bot intended to provide first pull request review and faster further reviews done by devs.",
"author": "p4w31 !d21k0w5k1 <[email protected]>",
"license": "ISC",
"homepage": "https://github.com/trolit/Patchron",
"keywords": [
"probot",
"github",
"pr-review",
"probot-app",
"automated-code-review"
],
"scripts": {
"start": "node main.js",
"dev": "nodemon --exec probot run ./src/index.js",
"test": "jest --verbose --silent",
"test:logs": "jest --verbose",
"lint:check": "eslint .",
"lint:fix": "eslint --fix .",
"trace:warnings": "node --trace-warnings index.js",
"docker:build": "docker build -t patchron ."
},
"dependencies": {
"@probot/adapter-github-actions": "3.1.3",
"cron": "2.1.0",
"dayjs": "1.11.7",
"dedent-js": "1.0.1",
"dotenv": "16.0.3",
"dotenv-parse-variables": "2.0.0",
"http-status-codes": "2.2.0",
"js-base64": "3.7.3",
"lodash": "4.17.21",
"module-alias": "2.2.2",
"node-fetch": "^2.6.7",
"pino-multi-stream": "6.0.0",
"pino-tee": "0.3.0",
"probot": "12.2.8"
},
"devDependencies": {
"eslint": "8.18.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-jsdoc": "39.3.3",
"jest": "26.6.3",
"jsdoc": "3.6.10",
"nock": "13.2.9",
"nodemon": "2.0.20",
"prettier": "2.7.1",
"smee-client": "1.2.3"
},
"engines": {
"node": ">= 16.15.0"
},
"jest": {
"moduleNameMapper": {
"^@root(.*)$": "<rootDir>",
"^src(.*)$": "<rootDir>/src$1",
"^test(.*)$": "<rootDir>/test$1"
}
},
"main": "src/index.js",
"directories": {
"test": "test",
"src": "src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/trolit/Patchron.git"
},
"bugs": {
"url": "https://github.com/trolit/Patchron/issues"
},
"_moduleAliases": {
"@root": ".",
"src": "./src"
}
}