-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
36 lines (36 loc) · 1.11 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
{
"name": "provision-with-micromamba",
"version": "1.0.0",
"description": "GitHub Action to provision a CI instance using micromamba",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "ncc build index.js -o dist/main --license licenses.txt && ncc build post.js -o dist/post --license licenses.txt && node generate-inputs-docs.js",
"build-readme": "node generate-inputs-docs.js",
"lint": "standard *.js --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mamba-org/provision-with-micromamba.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/mamba-org/provision-with-micromamba/issues"
},
"homepage": "https://github.com/mamba-org/provision-with-micromamba#readme",
"dependencies": {
"@actions/cache": "^3.0.0",
"@actions/core": "^1.8.0",
"@actions/exec": "^1.1.0",
"@actions/io": "^1.1.0",
"@vercel/ncc": "^0.34.0",
"fs": "^0.0.1-security",
"js-yaml": "^3.14.0",
"os": "^0.1.1"
},
"devDependencies": {
"standard": "^17.0.0"
}
}