This repository was archived by the owner on May 29, 2024. It is now read-only.
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
51 lines (51 loc) · 1.57 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.57 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
{
"name": "docker-cache",
"version": "0.3.3",
"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",
"test": "yarn run tsc && yarn node --experimental-vm-modules \"$(yarn bin jest)\""
},
"engines": {
"node": "18.16.0",
"yarn": "3.5.1"
},
"packageManager": "yarn@3.5.1",
"dependencies": {
"@actions/cache": "3.2.1",
"@actions/core": "1.10.0"
},
"devDependencies": {
"@cspell/dict-win32": "2.0.1",
"@fast-check/jest": "1.6.2",
"@jest/globals": "29.5.0",
"@jest/types": "29.5.0",
"@tsconfig/node18-strictest-esm": "1.0.1",
"@types/eslint": "8.40.0",
"@types/jest": "29.5.1",
"@types/node": "18.16.14",
"@types/prettier": "2.7.2",
"@typescript-eslint/eslint-plugin": "5.59.7",
"@typescript-eslint/parser": "5.59.7",
"@vercel/ncc": "0.36.1",
"@yarnpkg/sdks": "2.7.1",
"eslint": "8.41.0",
"eslint-config-prettier": "8.8.0",
"fast-check": "3.9.0",
"jest": "29.5.0",
"jest-junit": "16.0.0",
"jest-mock": "29.5.0",
"prettier": "2.8.8",
"ts-jest": "29.1.0",
"ts-node": "10.9.1",
"typescript": "4.9.5"
}
}