-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
56 lines (56 loc) · 1.72 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": "docker-compose-testkit",
"version": "1.4.2",
"type": "module",
"exports": "./build/docker-compose-testkit.js",
"types": "build/docker-compose-testkit.d.ts",
"files": [
"build"
],
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"clean": "npm run clean:ts && rm -rf build tsconfig.build.tsbuildinfo",
"clean:ts": "tsc --build --clean",
"build": "npm run clean && npm run build:ts",
"build:ts": "tsc -p tsconfig.build.json",
"test": "npm run lint && npm run test:jest",
"test:jest": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"lint": "npm run lint:scripts",
"lint:scripts": "eslint --ext .ts,.tsx --ext .js src/ __tests__/"
},
"repository": "[email protected]:corevo/docker-compose-testkit.git",
"author": "Tomer <[email protected]>",
"license": "MIT",
"dependencies": {
"debug": "^4.3.3",
"execa": "^9.0.0",
"got": "^14.0.0",
"js-yaml": "^4.1.0",
"lodash.capitalize": "^4.2.1",
"p-retry": "^6.0.0",
"supports-color": "^9.2.1"
},
"devDependencies": {
"@jest/globals": "^29.0.0",
"@types/debug": "^4.1.7",
"@types/js-yaml": "^4.0.5",
"@types/lodash.capitalize": "^4.2.6",
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^8.1.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jest": "^28.0.0",
"eslint-plugin-no-only-tests": "^3.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.0.0",
"prettier": "^3.0.0",
"ts-jest": "^29.0.0",
"typescript": "^5.0.0"
}
}