-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
65 lines (65 loc) · 1.59 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
{
"name": "github-bot",
"version": "2.0.0",
"private": true,
"description": "Blitz.js GitHub bot",
"contributors": [
{
"name": "dajinchu",
"email": "[email protected]"
},
{
"name": "juanm04",
"email": "[email protected]"
}
],
"license": "ISC",
"repository": "https://github.com/blitz-js/github-bot",
"homepage": "https://github.com/blitz-js/github-bot",
"bugs": "https://github.com/blitz-js/github-bot/issues",
"scripts": {
"test": "jest",
"test:watch": "jest --watch --notify --notifyMode=change --coverage",
"postinstall": "husky install"
},
"dependencies": {
"@octokit/rest": "^18.5.0",
"@octokit/webhooks": "^8.7.2",
"all-contributors-cli": "^6.20.0",
"lodash": "^4.17.21",
"log4js": "^6.3.0"
},
"devDependencies": {
"@octokit/webhooks-definitions": "^3.65.2",
"@types/jest": "^26.0.22",
"@types/lodash": "^4.14.168",
"@types/node": "^14.14.36",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"concurrently": "^6.0.0",
"dotenv-cli": "^4.0.0",
"eslint": "^7.22.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "5.2.0",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"nock": "^13.0.11",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"smee-client": "^1.2.2",
"ts-jest": "^26.5.4",
"typescript": "^4.2.3"
},
"engines": {
"node": "14.x"
},
"jest": {
"testEnvironment": "node"
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix"
]
}
}