forked from juliangruber/find-pull-request-action
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 706 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 706 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
{
"name": "find-pull-request-action",
"private": true,
"version": "1.3.0",
"license": "MIT",
"description": "GitHub Action for finding pull requests",
"repository": "juliangruber/find-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 && git tag -f v1 && git push --tags -f"
},
"np": {
"publish": false
},
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/github": "^1.1.0"
},
"devDependencies": {
"@zeit/ncc": "^0.20.5",
"np": "^5.1.3",
"prettier-standard": "^15.0.1",
"standard": "^14.3.1"
}
}