forked from MasterworksIO/action-local-cache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.63 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
46
47
48
49
50
51
52
53
54
55
{
"name": "action-local-cache",
"version": "1.0.0",
"private": true,
"description": "A Github Action to save and restore files across job runs directly in the runner's file system",
"main": "dist/main/index.ts",
"engines": {
"node": "^16.13.0"
},
"prettier": "@masterworks/eslint-config-masterworks/prettier",
"scripts": {
"all": "npm run format && npm run lint && npm run type-check && npm run pack && npm test",
"format-check": "prettier --check **/*.ts",
"format": "prettier --write **/*.ts",
"lint": "eslint .",
"pack": "ncc build src/main.ts --out dist/main && ncc build src/post.ts --out dist/post",
"test": "jest",
"type-check": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MasterworksIO/action-local-cache.git"
},
"keywords": [
"actions",
"node",
"self-hosted",
"runner"
],
"author": "Masterworks",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/io": "^1.0.2",
"loglevel": "^1.7.0"
},
"devDependencies": {
"@masterworks/eslint-config-masterworks": "github:MasterworksIO/eslint-config-masterworks#2.0.0",
"@types/jest": "^27.0.3",
"@types/node": "^16.11.11",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"@vercel/ncc": "^0.33.0",
"eslint": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^25.3.0",
"eslint-plugin-node": "^11.1.0",
"jest": "^27.4.3",
"jest-circus": "^27.4.2",
"js-yaml": "^4.0.0",
"prettier": "^2.2.1",
"ts-jest": "^27.0.7",
"typescript": "^4.5.2"
}
}