-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
35 lines (35 loc) · 883 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": "auto-request-review",
"version": "0.13.0",
"description": "GitHub Action that automatically requests review of a pull request based on files changed",
"main": "index.js",
"scripts": {
"build": "ncc build src/index.js",
"lint": "eslint src test",
"test": "NODE_ENV=automated-testing nyc --all mocha test",
"coverage": "nyc report --reporter=text-lcov > coverage/lcov.info"
},
"keywords": [],
"author": "Taka <[email protected]>",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.9.1",
"@actions/github": "^4.0.0",
"lodash": "^4.17.21",
"minimatch": "^3.0.5",
"yaml": "^2.2.2"
},
"devDependencies": {
"@vercel/ncc": "^0.33.3",
"chai": "^4.3.6",
"eslint": "^8.9.0",
"mocha": "^9.2.1",
"nyc": "^15.1.0",
"sinon": "^13.0.1"
},
"nyc": {
"include": [
"src"
]
}
}