forked from testcontainers/testcontainers-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·47 lines (47 loc) · 1.31 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
{
"name": "testcontainers-monorepo",
"license": "MIT",
"workspaces": [
"packages/testcontainers",
"packages/modules/*"
],
"scripts": {
"pre-commit": "lint-staged",
"docs:serve": "docker-compose up",
"test": "cross-env DEBUG=testcontainers* jest",
"test:ci": "npm run test -- --runInBand --coverage",
"format": "prettier --write package.json \"packages/**/*.ts\"",
"lint": "eslint --fix package.json \"packages/**/*.ts\"",
"lint:ci": "eslint package.json \"packages/**/*.ts\" --max-warnings=0",
"update-deps": "npm-check-updates --workspaces --root -u",
"validate-engine": "ls-engines"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^13.3.0",
"ls-engines": "^0.9.1",
"npm-check-updates": "^16.14.15",
"prettier": "^2.8.8",
"shx": "^0.3.4",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^4.9.5"
},
"lint-staged": {
"packages/**/*.ts": [
"prettier --write",
"eslint --fix"
]
},
"engines": {
"node": ">= 10.16"
}
}