-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.44 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
{
"name": "docker-tar-pusher",
"version": "2.1.1",
"description": "A small tool that allows pushing tar files directly to a Docker registry.",
"repository": {
"type": "git",
"url": "https://github.com/karolyp/docker-tar-pusher.git"
},
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
"build"
],
"scripts": {
"build": "tsc",
"test": "vitest test",
"prepare": "husky"
},
"keywords": [
"docker",
"docker registry",
"docker image",
"docker tar"
],
"author": "Károly Pákozdi <karoly.pakozdi.150@gmail.com>",
"license": "MIT",
"devDependencies": {
"@changesets/cli": "^2.27.9",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@eslint/js": "^9.14.0",
"@types/eslint__js": "^8.42.3",
"@types/node": "^18.11.0",
"@types/tar": "^6.1.3",
"@typescript-eslint/parser": "^8.14.0",
"@vitest/coverage-v8": "2.1.4",
"dotenv": "^16.4.5",
"eslint": "^9.14.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"husky": "^9.1.6",
"prettier": "^2.7.1",
"typescript": "^5.6.3",
"typescript-eslint": "^8.14.0",
"vitest": "^2.1.4"
},
"dependencies": {
"axios": "^1.1.3",
"tar": "^6.1.11"
},
"packageManager": "pnpm@9.12.3+sha512.cce0f9de9c5a7c95bef944169cc5dfe8741abfb145078c0d508b868056848a87c81e626246cb60967cbd7fd29a6c062ef73ff840d96b3c86c40ac92cf4a813ee"
}