This repository has been archived by the owner on Oct 20, 2023. It is now read-only.
forked from Trendyol/jest-testcontainers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.67 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
{
"name": "@gosupersimple/jest-testcontainers",
"version": "3.0.0",
"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": "yarn run remove:dist && tsc",
"test": "jest",
"lint": "tslint --fix src/**/*.ts",
"prettier": "prettier --write src/**/*.ts",
"style:fix": "yarn run lint && yarn run prettier",
"prepublish": "yarn run build"
},
"lint-staged": {
"*.ts": [
"tslint --fix",
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/gosupersimple/jest-testcontainers.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/",
"access": "restricted"
},
"keywords": [
"jest",
"testcontainers",
"docker",
"integration",
"test"
],
"author": "Trendyol",
"license": "MIT",
"bugs": {
"url": "https://github.com/gosupersimple/jest-testcontainers/issues"
},
"homepage": "https://github.com/gosupersimple/jest-testcontainers#readme",
"devDependencies": {
"@types/cwd": "^0.10.0",
"@types/dockerode": "^3.3.0",
"@types/jest": "^29.0.0",
"@types/node": "^18.0.0",
"jest": "^29.0.0",
"lint-staged": "^10.2.2",
"prettier": "^1.19.1",
"ts-jest": "^29.0.0",
"ts-node": "^10.9.0",
"tslint": "^6.1.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^5.1.0"
},
"dependencies": {
"cwd": "^0.10.0",
"testcontainers": "^9.12.0"
},
"peerDependencies": {
"jest-environment-node": ">=29"
}
}