-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.65 KB
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": "@adguard/github-stats",
"version": "1.0.1",
"author": "Adguard Software Ltd.",
"license": "MIT",
"bin": {
"github-poll": "./bin/github-poll.js",
"github-publish": "./bin/github-publish.js",
"github-stats": "./bin/github-stats.js"
},
"scripts": {
"poll": "node ./bin/github-poll.js",
"stats": "node ./bin/github-stats.js",
"publish": "node ./bin/github-publish.js",
"build": "rollup -c",
"test": "jest",
"lint": "eslint --cache .",
"lint-staged": "lint-staged"
},
"lint-staged": {
"{src,tests,scripts}/**/*.js": [
"eslint"
]
},
"engines": {
"node": ">=22.17.0"
},
"dependencies": {
"@octokit/core": "3.6.0",
"@slack/web-api": "7.15.1",
"date-fns": "2.28.0",
"dotenv": "16.0.0",
"lodash": "4.17.21",
"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",
"@rollup/plugin-babel": "6.0.4",
"@rollup/plugin-commonjs": "28.0.3",
"@rollup/plugin-node-resolve": "16.0.1",
"babel-jest": "29.3.1",
"eslint": "8.28.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsdoc": "62.9.0",
"esm": "3.2.25",
"husky": "8.0.2",
"jest": "29.3.1",
"lint-staged": "13.1.0",
"markdownlint": "0.40.0",
"markdownlint-cli": "0.48.0",
"rollup": "4.40.1"
}
}