forked from containerbase/base
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
121 lines (121 loc) · 3.73 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "containerbase",
"version": "0.0.0-semantic-release",
"private": true,
"license": "MIT",
"repository": "https://github.com/containerbase/base.git",
"author": "Rhys Arkins <[email protected]>",
"type": "module",
"engines": {
"node": ">=18.12.0",
"yarn": "^3.2.0"
},
"scripts": {
"bats": "node --experimental-import-meta-resolve tools/bats.js --timing --verbose-run",
"build": "run-s 'build:*'",
"build:cli": "node tools/esbuild.js",
"eslint": "eslint --cache --report-unused-disable-directives .",
"eslint-fix": "eslint --cache --fix --report-unused-disable-directives .",
"lint": "run-s prettier eslint lint:types",
"lint:types": "run-p 'lint:types:*'",
"lint:types:default": "tsc",
"lint:types:dist": "tsc -p tsconfig.dist.json",
"postinstall": "husky install",
"prepare:proxy": "node tools/prepare-proxy.js",
"prettier": "prettier --cache -c -u \"**/*.*\"",
"prettier-fix": "prettier --cache -w -u \"**/*.*\"",
"release:prepare": "node tools/prepare-release.js",
"release:publish": "node tools/publish-release.js",
"start": "tsx src/cli/index.ts",
"test": "run-s 'test:*'",
"test:bats": "node tools/bats.js --timing --verbose-run test/bash/ test/bash/v2",
"test:docker": "node tools/test.js",
"test:vitest": "vitest run --coverage"
},
"dependencies": {
"@sindresorhus/is": "6.1.0",
"clipanion": "3.2.1",
"del": "7.1.0",
"execa": "8.0.1",
"global-agent": "3.0.0",
"got": "13.0.0",
"inversify": "6.0.2",
"pino": "8.16.1",
"pino-pretty": "10.2.3",
"pretty-ms": "8.0.0",
"reflect-metadata": "0.1.13",
"semver": "7.5.4",
"simple-git": "3.20.0",
"tar": "6.2.0",
"typanion": "3.14.0"
},
"devDependencies": {
"@semantic-release/exec": "6.0.3",
"@tsconfig/node18": "18.2.2",
"@tsconfig/strictest": "2.0.2",
"@types/global-agent": "2.1.3",
"@types/node": "18.18.8",
"@types/semver": "7.5.5",
"@types/shelljs": "0.8.15",
"@types/tar": "6.1.8",
"@typescript-eslint/eslint-plugin": "6.10.0",
"@typescript-eslint/parser": "6.10.0",
"@vitest/coverage-v8": "0.34.6",
"@vitest/ui": "0.34.6",
"@yarnpkg/sdks": "3.0.0",
"bats": "1.10.0",
"bats-assert": "2.0.0",
"bats-support": "0.3.0",
"clipanion": "3.2.1",
"conventional-changelog-conventionalcommits": "7.0.2",
"esbuild": "0.19.5",
"esbuild-plugin-pino": "2.1.0",
"eslint": "8.53.0",
"eslint-config-prettier": "9.0.0",
"eslint-formatter-gha": "1.4.3",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-import": "2.29.0",
"eslint-plugin-jest": "27.6.0",
"eslint-plugin-jest-formatting": "3.1.0",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-typescript-enum": "2.1.0",
"eslint-plugin-vitest": "0.3.9",
"husky": "8.0.3",
"lint-staged": "15.0.2",
"nock": "13.3.8",
"npm-run-all": "4.1.5",
"pkg": "5.8.1",
"prettier": "2.8.8",
"prettier-plugin-package": "1.3.1",
"semantic-release": "22.0.7",
"shelljs": "0.8.5",
"tsx": "3.14.0",
"type-fest": "4.6.0",
"typescript": "5.2.2",
"vite": "4.5.0",
"vite-tsconfig-paths": "4.2.1",
"vitest": "0.34.6",
"vitest-github-actions-reporter": "0.10.0"
},
"resolutions": {
"[email protected]": "patch:clipanion@npm%3A3.2.1#./.yarn/patches/clipanion-npm-3.2.1-fc9187f56c.patch",
"esbuild": "0.19.5",
"tsconfig-paths": "4.2.0",
"vite": "4.5.0"
},
"contributors": [
"Michael Kriese <[email protected]>"
],
"dependenciesMeta": {
"[email protected]": {
"unplugged": true
},
"[email protected]": {
"unplugged": true
},
"[email protected]": {
"unplugged": true
}
},
"packageManager": "[email protected]"
}