forked from ScribeMD/docker-cache
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.68 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.68 KB
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
{
"name": "docker-cache",
"version": "0.5.0",
"description": "Cache Docker Images Whether Built or Pulled",
"homepage": "https://github.com/ScribeMD/docker-cache#readme",
"main": "dist/main/index.js",
"repository": "github:ScribeMD/docker-cache",
"author": "Kurt von Laven <kurt.von.laven@gmail.com>",
"license": "MIT",
"type": "module",
"scripts": {
"build": "yarn run build:main && yarn run build:post",
"build:main": "yarn run ncc build src/main.ts --out dist/main --minify",
"build:post": "yarn run ncc build src/post.ts --out dist/post --minify",
"jest:esm": "yarn node --experimental-vm-modules \"$(yarn bin jest)\" --config build/jest.config.js",
"test": "yarn run tsc && yarn run jest:esm"
},
"engines": {
"node": "20.11.1",
"yarn": "4.1.1"
},
"packageManager": "yarn@4.1.1",
"dependencies": {
"@actions/cache": "4.0.3",
"@actions/core": "1.10.1"
},
"devDependencies": {
"@cspell/dict-win32": "2.0.3",
"@fast-check/jest": "1.8.0",
"@jest/globals": "29.7.0",
"@jest/types": "29.6.3",
"@protobuf-ts/runtime": "^2.9.6",
"@protobuf-ts/runtime-rpc": "^2.9.6",
"@tsconfig/node20": "20.1.2",
"@tsconfig/strictest": "2.0.3",
"@types/eslint": "8.56.6",
"@types/jest": "29.5.12",
"@types/node": "20.11.30",
"@typescript-eslint/eslint-plugin": "7.3.1",
"@typescript-eslint/parser": "7.3.1",
"@vercel/ncc": "^0.38.3",
"@yarnpkg/sdks": "3.1.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"fast-check": "3.16.0",
"jest": "29.7.0",
"jest-junit": "16.0.0",
"jest-mock": "29.7.0",
"prettier": "3.1.1",
"ts-jest": "29.1.2",
"typescript": "5.4.3"
}
}