-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.26 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
{
"name": "@nockered/sdk",
"version": "0.2.3",
"license": "MIT",
"description": "A simple Docker SDK for Node.JS",
"exports": "./dist/src/index.js",
"types": "dist/src",
"type": "module",
"files": [
"dist/src"
],
"engines": {
"node": ">=16.13"
},
"scripts": {
"build": "rimraf ./dist && tsc",
"test-windows": "cross-env DOCKER_DAEMON_URL=http://localhost:2375/v1.41 c8 ava",
"test-unix": "cross-env DOCKER_DAEMON_URL=unix:/var/run/docker.sock:/v1.41 c8 ava"
},
"dependencies": {
"class-transformer": "^0.5.1",
"got": "^13.0.0"
},
"devDependencies": {
"@esbuild-kit/esm-loader": "^2.5.4",
"@sindresorhus/tsconfig": "^5.0.0",
"@types/node": "^20.8.10",
"ava": "^5.1.1",
"c8": "^8.0.1",
"cross-env": "^7.0.3",
"prettier": "^3.0.3",
"rimraf": "^5.0.5",
"typescript": "^5.2.2"
},
"ava": {
"files": [
"tests/**/*"
],
"extensions": {
"ts": "module"
},
"nodeArguments": [
"--no-warnings",
"--loader=@esbuild-kit/esm-loader",
"--experimental-specifier-resolution=node"
]
},
"repository": "https://github.com/Nockered/sdk",
"author": "Yann SEGET <[email protected]>",
"keywords": [
"node",
"docker",
"sdk"
],
"private": false
}