-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.3 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
{
"name": "@adguard/github-stats",
"version": "1.0.0",
"author": "AdGuard",
"license": "MIT",
"bin": {
"github-poll": "./bin/github-poll.js",
"github-push": "./bin/github-push.js",
"github-stats": "./bin/github-stats.js"
},
"scripts": {
"publish": "node -r esm ./bin/github-publish.js",
"test": "jest",
"lint": "eslint .",
"lint-staged": "lint-staged"
},
"lint-staged": {
"{src,tests,scripts}/**/*.js": [
"eslint"
]
},
"dependencies": {
"@octokit/core": "^3.6.0",
"@slack/web-api": "^6.8.0",
"any-promise": "^1.3.0",
"date-fns": "^2.28.0",
"dotenv": "^16.0.0",
"fs-extra": "^10.1.0",
"lodash": "^4.17.21",
"node-fetch": "2",
"stream-chain": "^2.2.5",
"stream-json": "^1.7.4"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.20.5",
"@babel/node": "^7.20.5",
"@babel/preset-env": "^7.20.2",
"babel-jest": "^29.3.1",
"eslint": "^8.28.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"esm": "^3.2.25",
"husky": "^8.0.2",
"jest": "^29.3.1",
"lint-staged": "^13.1.0"
}
}