-
-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 719 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 719 Bytes
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
{
"name": "approve-pull-request-action",
"private": true,
"version": "2.1.0",
"license": "MIT",
"description": "GitHub Action for approving pull requests",
"repository": "juliangruber/approve-pull-request-action",
"scripts": {
"test": "prettier-standard index.js && standard index.js",
"build": "ncc build index.js",
"version": "npm run build && git add dist",
"release": "np",
"postversion": "git tag --force v2"
},
"np": {
"publish": false
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^6.0.0"
},
"devDependencies": {
"@vercel/ncc": "^0.38.1",
"np": "^9.2.0",
"prettier-standard": "^15.0.1",
"standard": "^17.1.0"
}
}