forked from webiny/action-post-run
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
26 lines (26 loc) · 833 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
{
"name": "action-pr",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:doitadrian/action-pr.git",
"author": "Adrian Smijulj <[email protected]>",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.2.3",
"@actions/exec": "^1.0.3",
"@actions/github": "^2.1.1"
},
"devDependencies": {
"@zeit/ncc": "^0.22.0",
"concurrently": "^5.2.0",
"prettier": "^2.0.2"
},
"scripts": {
"build": "concurrently 'yarn build:main' 'yarn build:post'",
"watch": "concurrently 'yarn build:main --watch' 'yarn build:post' --watch",
"build:main": "ncc build main.ts --out dist/main",
"watch:main": "ncc build main.ts --out dist/main --watch",
"build:post": "ncc build post.ts --out dist/post",
"watch:post": "ncc build post.ts --out dist/post --watch"
}
}