-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.13 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "testcontainers-node-playwright",
"version": "0.5.4",
"license": "MIT",
"author": {
"name": "Javier López de Ancos",
"email": "[email protected]",
"url": "https://javierlopezdeancos.dev"
},
"contributors": [
"Javier Lopez de Ancos <[email protected]> (https://github.com/javierlopezdeancos)"
],
"engines": {
"node": ">=20.13.1",
"npm": ">=10.5.2"
},
"keywords": [
"playwright",
"testing",
"docker",
"testcontainers"
],
"description": "Playwright module for Testcontainers",
"homepage": "https://github.com/javierlopezdeancos/testcontainers-node-playwright#readme",
"repository": {
"type": "git",
"url": "https://github.com/javierlopezdeancos/testcontainers-node-playwright"
},
"bugs": {
"url": "https://github.com/javierlopezdeancos/testcontainers-node-playwright/issues"
},
"main": "build/index.js",
"files": [
"build"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc --project tsconfig.build.json",
"test": "jest .",
"test:ci": "npm run test -- --runInBand --coverage",
"format": "prettier --write package.json \"**/*.ts\"",
"lint": "eslint --fix package.json \"**/*.ts\"",
"lint:ci": "npm run lint -- --max-warnings=0",
"update-deps": "npm-check-updates --workspaces --root -u"
},
"lint-staged": {
"*.ts": [
"npm run lint",
"npm run format"
]
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged",
"pre-push": "npm run test:ci"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/tar-fs": "^2.0.4",
"@types/tmp": "^0.2.6",
"@typescript-eslint/eslint-plugin": "^7.3.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"npm-check-updates": "^16.14.18",
"prettier": "^3.2.5",
"tar-fs": "^3.0.5",
"tmp": "^0.2.3",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"lint-staged": "^15.2.2",
"simple-git-hooks": "^2.11.1",
"typescript": "^5.4.2"
},
"dependencies": {
"testcontainers": "^10.13.2"
}
}