-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.02 KB
/
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
36
37
{
"name": "merge-pr",
"version": "1.0.0",
"description": "Package release custom action",
"main": "index.js",
"scripts": {
"build": "rm -rf action && ncc build src/action.js -o action",
"start": "babel-node src/action.js",
"deploy":"cd src && zip -r -D test.zip .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BaharaJr/merge-pr.git"
},
"author": "Bennett Benedict",
"license": "WTFPL",
"bugs": {
"url": "https://github.com/BaharaJr/merge-pr/issues"
},
"homepage": "https://github.com/BaharaJr/merge-pr#readme",
"dependencies": {
"@actions/core": "1.6.0",
"@actions/github": "5.0.0",
"@actions/io": "1.1.1",
"@babel/polyfill": "7.11.5",
"@vercel/ncc": "0.33.1"
},
"devDependencies": {
"@babel/core": "7.11.6",
"@babel/node": "7.10.5",
"@babel/preset-env": "7.11.5",
"eslint": "7.9.0",
"eslint-config-airbnb-base": "14.2.0",
"eslint-plugin-import": "2.22.0"
}
}