-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 997 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 997 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
35
36
37
38
39
{
"name": "stack-cache-action",
"version": "1.0.0",
"description": "Caching Action for Stack-based Haskell projects",
"scripts": {
"build": "ncc build src/save.js --out dist/save --minify && ncc build src/restore.js --out dist/restore --minify",
"test": "jest",
"eslint": "eslint --ext \"js,ts,jsx,tsx\" ./src",
"prettier": "prettier \"src/**/*.js\"",
"lint": "yarn prettier --check && yarn eslint",
"lint:fix": "yarn prettier --write && yarn eslint --fix"
},
"keywords": [
"github",
"action",
"yarn",
"install",
"cache"
],
"author": "freckle",
"license": "MIT",
"dependencies": {
"@actions/cache": "^6.0.0",
"@actions/core": "^2.0.3",
"@actions/exec": "^2.0.0",
"@actions/glob": "^0.5.1",
"md5-file": "^5.0.0",
"yaml": "^2.8.2"
},
"devDependencies": {
"@vercel/ncc": "^0.38.4",
"eslint": "^10.0.3",
"jest": "^30.3.0",
"prettier": "^3.8.1"
},
"engines": {
"npm": ">=11.11.1"
}
}