forked from maxnowack/local-cache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.49 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
{
"name": "local-cache",
"version": "1.0.0",
"private": true,
"description": "Github Action to provide caching data by placing a tarball on the local filesystem",
"main": "dist/main/index.ts",
"scripts": {
"prepare": "ncc build --target es2020 -o dist/restore src/restore.ts && ncc build --target es2020 -o dist/restoreOnly src/restoreOnly.ts && ncc build --target es2020 -o dist/save src/save.ts && ncc build --target es2020 -o dist/saveOnly src/saveOnly.ts && linefix dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maxnowack/local-cache.git"
},
"keywords": [
"actions",
"node",
"self-hosted",
"runner"
],
"author": "Max Nowack <[email protected]>",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.1",
"@actions/glob": "^0.4.0",
"@actions/io": "^1.1.3",
"loglevel": "^1.8.1",
"semver": "^7.5.0"
},
"devDependencies": {
"@types/jest": "^29.5.1",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"eslint": "^8.38.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prefer-object-spread": "^1.2.1",
"jest": "^29.5.0",
"jest-circus": "^29.5.0",
"rimraf": "^5.0.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"@vercel/ncc": "^0.38.1",
"linefix": "^0.1.1",
"typescript": "5.2.2"
}
}