-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
60 lines (60 loc) · 1.42 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
{
"name": "eslint-github-bot",
"version": "0.1.0",
"description": "Plugin based Github bot for ESLint",
"main": "./src/app.js",
"scripts": {
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"start": "node ./src/app.js",
"test": "jest --colors --verbose --coverage"
},
"author": "Gyandeep Singh <gyandeeps@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/eslint/eslint-github-bot",
"repository": "eslint/eslint-github-bot",
"bugs": "https://github.com/eslint/eslint-github-bot/issues/",
"funding": "https://opencollective.com/eslint",
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.js": "eslint --fix"
},
"dependencies": {
"moment": "^2.29.4",
"moment-timezone": "^0.5.35",
"probot": "^7.4.0",
"probot-scheduler": "^1.0.3"
},
"devDependencies": {
"eslint": "^8.55.0",
"eslint-config-eslint": "^9.0.0",
"globals": "^13.24.0",
"jest": "^26.1.0",
"lint-staged": "^13.2.1",
"nock": "^10.0.2",
"yorkie": "^2.0.0"
},
"keywords": [
"bot",
"github",
"events",
"eslint"
],
"jest": {
"testMatch": [
"<rootDir>/tests/**/*.js"
],
"testPathIgnorePatterns": [
"<rootDir>/tests/.eslintrc.js",
"<rootDir>/tests/__mocks__"
],
"coverageDirectory": "./coverage",
"collectCoverage": false,
"testEnvironment": "node"
},
"engines": {
"node": "16.x"
}
}