-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 1.06 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
{
"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",
"lint": "eslint . --no-error-on-unmatched-pattern",
"lint:fix": "eslint . --no-error-on-unmatched-pattern --fix"
},
"keywords": [
"github",
"action",
"yarn",
"install",
"cache"
],
"author": "freckle",
"license": "MIT",
"dependencies": {
"@actions/cache": "^4.0.0",
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"@actions/glob": "^0.5.0",
"crypto": "^1.0.1",
"md5-file": "^5.0.0",
"yaml": "^2.7.0"
},
"devDependencies": {
"@zeit/ncc": "^0.22.3",
"eslint": "^9.19.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.3",
"jest": "^29.7.0",
"prettier": "^3.4.2"
},
"engines": {
"npm": ">=6.6"
}
}