-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
32 lines (32 loc) · 858 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
{
"name": "require-user-approval",
"version": "0.0.28",
"description": "GitHub Action that automatically checks if a set of required users have approved the pull request.",
"main": "index.js",
"scripts": {
"build": "npx tsc; ncc build build/index.js",
"lint": "eslint src test"
},
"keywords": [],
"author": "Brian Arnold <[email protected]>",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.9.1",
"@actions/github": "^4.0.0",
"lodash": "^4.17.21",
"minimatch": "^3.0.5",
"yaml": "^1.10.0"
},
"devDependencies": {
"@types/lodash": "^4.14.191",
"@types/minimatch": "^5.1.2",
"@types/node": "^18.15.2",
"@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",
"typescript": "^4.9.5"
}
}