forked from PDMLab/docker-compose
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.18 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.18 KB
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
{
"name": "@tw/docker-compose",
"version": "0.1.1",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"types": "dist/index.d.ts",
"scripts": {
"lint": "eslint src/**/*.ts test/**/*.ts",
"build": "tsc",
"prepublishOnly": "tsc",
"release": "yarn build && standard-version"
},
"repository": {
"url": "git@github.com:PDMLab/docker-compose.git"
},
"license": "MIT",
"description": "Manage docker-compose from Node.js",
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "17.0.3",
"@types/dockerode": "^3.3.9",
"@types/jest": "^28.1.6",
"@types/node": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"dockerode": "^3.3.2",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-watch": "^8.0.0",
"husky": "^8.0.1",
"jest": "^28.1.3",
"prettier": "^2.7.1",
"standard-version": "9.5.0",
"ts-jest": "^28.0.7",
"typescript": "^4.7.4"
},
"dependencies": {
"yaml": "^2.1.1"
}
}