-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 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
38
39
40
41
42
43
44
45
{
"name": "anka-vm-github-action",
"version": "1.3.2",
"description": "A GitHub Action for running commands within Anka VMs",
"main": "index.js",
"scripts": {
"lint": "eslint index.js",
"package": "ncc build index.js -o dist",
"test": "eslint index.js && jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/veertuinc/anka-github-action.git"
},
"jest": {
"verbose": true
},
"keywords": [
"GitHub",
"Actions",
"Anka",
"Veertu",
"macOS",
"Virtualization",
"Ondemand"
],
"author": "Veertu Inc.",
"license": "MIT",
"bugs": {
"url": "https://github.com/veertuinc/anka-github-action/issues"
},
"homepage": "https://github.com/veertuinc/anka-github-action#readme",
"dependencies": {
"@actions/artifact": "^1.0.0",
"@actions/core": "^1.7.0",
"@actions/exec": "^1.1.1",
"@actions/io": "^1.1.2",
"acorn": "^8.7.1"
},
"devDependencies": {
"@zeit/ncc": "^0.22.3",
"eslint": "^8.14.0",
"jest": "^28.0.3"
}
}