forked from testcontainers/testcontainers-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·91 lines (91 loc) · 2.63 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
81
82
83
84
85
86
87
88
89
90
91
{
"name": "testcontainers",
"author": "Cristian Greco",
"version": "9.1.1",
"main": "dist/index",
"types": "dist/index",
"keywords": [
"docker",
"testcontainers"
],
"files": [
"dist"
],
"description": "Testcontainers is a NodeJS library that supports tests, providing lightweight, throwaway instances of common databases, Selenium web browsers, or anything else that can run in a Docker container.",
"license": "MIT",
"homepage": "https://github.com/testcontainers/testcontainers-node#readme",
"repository": {
"type": "git",
"url": "https://github.com/testcontainers/testcontainers-node"
},
"bugs": {
"url": "https://github.com/testcontainers/testcontainers-node/issues"
},
"scripts": {
"prepare": "npm run build && husky install",
"pre-commit": "lint-staged",
"build": "npm run clean && tsc -p tsconfig.prod.json",
"clean": "rimraf dist",
"test": "cross-env DEBUG=testcontainers,testcontainers:exec jest --runInBand",
"format": "prettier --write package.json \"src/**/*.ts\"",
"lint": "eslint --fix package.json \"src/**/*.ts\"",
"updateDeps": "npx npm-check-updates -u",
"validateEngine": "npx ls-engines"
},
"dependencies": {
"@balena/dockerignore": "^1.0.2",
"@types/archiver": "^5.3.1",
"@types/dockerode": "^3.3.12",
"archiver": "^5.3.1",
"byline": "^5.0.0",
"debug": "^4.3.4",
"docker-compose": "^0.23.17",
"dockerode": "^3.3.4",
"get-port": "^5.1.1",
"node-fetch": "^2.6.7",
"properties-reader": "^2.2.0",
"ssh-remote-port-forward": "^1.0.4",
"tar-fs": "^2.1.1"
},
"devDependencies": {
"@elastic/elasticsearch": "^7.17.0",
"@types/byline": "^4.2.33",
"@types/debug": "4.1.7",
"@types/jest": "^29.2.0",
"@types/node": "^18.11.7",
"@types/node-fetch": "^2.6.2",
"@types/pg": "^8.6.5",
"@types/properties-reader": "^2.1.1",
"@types/tar-fs": "^2.0.1",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"arangojs": "^8.0.0",
"cross-env": "^7.0.3",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.1",
"jest": "^29.2.2",
"kafkajs": "^2.2.2",
"lint-staged": "^13.0.3",
"mysql2": "^2.3.3",
"mongoose": "^6.7.0",
"nats": "^2.8.0",
"neo4j-driver": "^5.2.0",
"pg": "^8.8.0",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.8.4",
"wait-for-expect": "^3.0.2"
},
"lint-staged": {
"src/**/*.ts": [
"prettier --write",
"eslint --fix"
]
},
"engines": {
"node": ">= 10.16"
}
}