forked from testcontainers/testcontainers-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·87 lines (87 loc) · 2.51 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
{
"name": "testcontainers",
"author": "Cristian Greco",
"version": "8.14.0",
"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",
"clean": "rimraf dist",
"test": "cross-env DEBUG=testcontainers jest --runInBand",
"format": "prettier --write package.json \"src/**/*.ts\"",
"lint": "eslint --fix package.json \"src/**/*.ts\"",
"updateDeps": "npx npm-check-updates -u"
},
"dependencies": {
"@balena/dockerignore": "^1.0.2",
"@types/archiver": "^5.3.1",
"@types/dockerode": "^3.3.8",
"archiver": "^5.3.1",
"byline": "^5.0.0",
"debug": "^4.3.4",
"docker-compose": "^0.23.17",
"dockerode": "^3.3.1",
"get-port": "^5.1.1",
"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": "^27.4.1",
"@types/node": "^17.0.25",
"@types/node-fetch": "^2.6.1",
"@types/pg": "^8.6.5",
"@types/properties-reader": "^2.1.1",
"@types/tar-fs": "^2.0.1",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"arangojs": "^7.7.0",
"cross-env": "^7.0.3",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"kafkajs": "^1.16.0",
"lint-staged": "^12.3.8",
"mysql2": "^2.3.3",
"mongoose": "^5.13.15",
"nats": "^2.7.1",
"neo4j-driver": "^4.4.5",
"node-fetch": "^2.6.7",
"pg": "^8.7.3",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"typescript": "^4.6.3",
"wait-for-expect": "^3.0.2"
},
"lint-staged": {
"src/**/*.ts": [
"prettier --write",
"eslint --fix"
]
}
}