-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 787 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 787 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
{
"name": "witness-run-wrapper-action",
"version": "0.3.2",
"description": "Lightweight wrapper for running GitHub Actions with Witness-style input propagation",
"main": "dist/index.js",
"type": "commonjs",
"scripts": {
"build": "ncc build index.js -o dist --license licenses.txt",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"keywords": [
"github",
"actions",
"witness",
"wrapper"
],
"author": "TestifySec",
"license": "Apache-2.0",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"@actions/io": "^1.1.3",
"js-yaml": "^4.1.0",
"@actions/tool-cache": "^2.0.2"
},
"devDependencies": {
"@vercel/ncc": "^0.38.3",
"jest": "^29.7.0"
}
}