-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 870 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 870 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
29
30
31
32
33
34
{
"name": "executable-wrapper",
"version": "1.0.0",
"description": "GitHub action that wraps executables and returns the stdout, stderr and exit code.",
"main": "index.js",
"keywords": [
"GitHub",
"Actions",
"Executable",
"Wrapper"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Maddog2050/executable-wrapper.git"
},
"bugs": {
"url": "https://github.com/Maddog2050/executable-wrapper/issues"
},
"homepage": "https://github.com/Maddog2050/executable-wrapper/issues",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.1",
"string-argv": "^0.3.1"
},
"devDependencies": {
"@vercel/ncc": "^0.31.1",
"husky": "^7.0.2"
},
"scripts": {
"build": "ncc build index.js -o dist --no-source-map-register",
"prepare": "husky install"
}
}