forked from silverlyra/dockside
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.37 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
{
"name": "dockside",
"version": "0.0.2",
"description": "Docker Registry v2 API client",
"author": "Lyra Naeseth <lyra@lyra.codes>",
"license": "MIT",
"module": "lib/index.mjs",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/silverlyra/dockside.git"
},
"homepage": "https://github.com/silverlyra/dockside#readme",
"bugs": {
"url": "https://github.com/silverlyra/dockside/issues"
},
"scripts": {
"build": "node .esbuild.cjs && tsc -p tsconfig.json",
"clean": "rm -fr lib",
"test": "jest",
"lint": "eslint src --ext .ts",
"fix": "eslint --fix src --ext .ts && prettier --write src",
"docs": "typedoc --entryPoints src/index.ts --excludePrivate",
"prepublishOnly": "yarn clean && yarn build"
},
"dependencies": {
"fetch-h2": "^3.0.1",
"ip-cidr": "^3.0.4"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/node": "^17.0.18",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"esbuild": "^0.14.23",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.4.0",
"fetch-mock-jest": "^1.5.1",
"jest": "^27.5.1",
"prettier": "^2.5.1",
"sucrase": "^3.20.3",
"ts-jest": "^27.1.3",
"typedoc": "^0.22.11",
"typescript": "^4.5.5"
},
"keywords": [
"docker"
]
}