-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.25 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
{
"name": "docker-classes",
"description": "Opinionated high level wrapper classes for the Docker API using dockerode",
"version": "2.0.4",
"np": {
"contents": "dist"
},
"files": [
"./dist"
],
"main": "./dist/index.js",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/reedHam/node-docker-classes.git"
},
"license": "MIT",
"scripts": {
"test": "jest",
"build": "tsc --declaration",
"format": "eslint --fix 'lib/**/*' && prettier --write './lib/**/*.{ts,js}'",
"prepublish": "yarn test && yarn build"
},
"dependencies": {
"dockerode": "^3.3.1",
"dotenv": "^16.0.0"
},
"devDependencies": {
"@types/dockerode": "^3.3.8",
"@types/jest": "^27.4.1",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"eslint": "^8.14.0",
"jest": "^27.0.0",
"prettier": "^2.6.2",
"ts-jest": "^27.1.4",
"typescript": "^4.6.3"
},
"keywords": [
"docker",
"dockerode",
"docker-api",
"docker-api-wrapper",
"docker-api-wrapper-node",
"class",
"wrapper"
]
}