-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
35 lines (35 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
{
"name": "setup-scarb",
"version": "1.0.0",
"description": "Sets up Scarb in your GitHub Actions workflow.",
"main": "index.js",
"scripts": {
"build": "ncc build index.js -o dist/setup --source-map --license licenses.txt && ncc build lib/cache-save.js -o dist/cache-save --source-map --license licenses.txt",
"lint": "npm run fmt:check",
"fmt:check": "prettier -c .",
"fmt": "prettier -w .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/software-mansion/setup-scarb.git"
},
"author": "Software Mansion <contact@swmansion.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/software-mansion/setup-scarb/issues"
},
"homepage": "https://github.com/software-mansion/setup-scarb#readme",
"dependencies": {
"@actions/cache": "^3.2.1",
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.1",
"@actions/glob": "^0.4.0",
"@actions/http-client": "^2.1.0",
"@actions/tool-cache": "^2.0.1"
},
"devDependencies": {
"@vercel/ncc": "^0.36.1",
"prettier": "3.0.0"
}
}