forked from fo2rist/pull-request-stats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 865 Bytes
/
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
{
"name": "pull-request-stats",
"version": "2.4.0",
"description": "Github action to print stats about Pull Request reviewers",
"main": "dist/index.js",
"scripts": {
"build": "ncc build src/index.js",
"test": "npm run build && jest"
},
"keywords": [],
"author": "fo2rist",
"license": "agpl-3.0",
"jest": {
"testEnvironment": "node",
"testMatch": [
"**/?(*.)+(spec|test).[jt]s?(x)"
]
},
"dependencies": {
"@actions/core": "^1.5.0",
"@actions/github": "^5.0.0",
"humanize-duration": "^3.27.0",
"jsurl": "^0.1.5",
"lodash.get": "^4.4.2",
"markdown-table": "^2.0.0"
},
"devDependencies": {
"@zeit/ncc": "^0.22.3",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.24.1",
"eslint-plugin-jest": "^24.4.0",
"jest": "^27.0.6"
}
}