-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 827 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 827 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "agent-javascript-action",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"all": "npm run clean && npm run dist/main/index.js && npm run dist/post/index.js",
"dist/main/index.js": "ncc build --out dist/main src/main/index.js && node scripts/fix-esm-require.js dist/main/index.js",
"dist/post/index.js": "ncc build --out dist/post src/post/index.js && node scripts/fix-esm-require.js dist/post/index.js",
"clean": "rm -rf dist",
"test": "node --test src/**/*.test.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"devDependencies": {
"@actions/artifact": "^2.3.2",
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"@vercel/ncc": "^0.34.0"
}
}