-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
77 lines (77 loc) · 1.95 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
{
"name": "@trendyol/jest-testcontainers",
"version": "2.1.1",
"description": "Jest preset for starting docker containers that stay up whilist your tests run.",
"main": "dist/index",
"types": "dist/index",
"files": [
"dist",
"jest-preset.js"
],
"scripts": {
"remove:dist": "rm -rf dist",
"build": "npm run remove:dist && tsc",
"test": "jest",
"lint": "tslint --fix src/**/*.ts",
"prettier": "prettier --write src/**/*.ts",
"style:fix": "npm run lint && npm run prettier",
"prepublish": "npm run build",
"example:redis": "cd ./examples/01-basic-redis && jest",
"example:redis-typescript": "cd ./examples/02-typescript-redis && jest",
"example:docker-compose": "cd ./examples/03-docker-compose && jest"
},
"lint-staged": {
"*.ts": [
"tslint --fix",
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm test"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/Trendyol/jest-testcontainers.git"
},
"keywords": [
"jest",
"testcontainers",
"docker",
"integration",
"test"
],
"author": "Trendyol",
"license": "MIT",
"bugs": {
"url": "https://github.com/Trendyol/jest-testcontainers/issues"
},
"homepage": "https://github.com/Trendyol/jest-testcontainers#readme",
"devDependencies": {
"@types/cwd": "^0.10.0",
"@types/dockerode": "^3.3.0",
"@types/jest": "^27.0.3",
"@types/node": "^17.0.5",
"@types/redis": "^2.8.20",
"husky": "^4.2.5",
"jest": "^27.4.5",
"lint-staged": "^10.2.2",
"prettier": "^1.19.1",
"redis": "^3.0.2",
"ts-jest": "^27.1.2",
"ts-node": "^10.4.0",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.5.4"
},
"dependencies": {
"cwd": "^0.10.0",
"node-duration": "^1.0.4",
"testcontainers": "4.7.0"
},
"peerDependencies": {
"jest-environment-node": ">=25"
}
}