forked from testcontainers/testcontainers-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.71 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
{
"name": "testcontainers",
"author": "Cristian Greco",
"version": "1.1.17",
"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/cristianrgreco/testcontainers-node#readme",
"repository": {
"type": "git",
"url": "https://github.com/cristianrgreco/testcontainers-node"
},
"bugs": {
"url": "https://github.com/cristianrgreco/testcontainers-node/issues"
},
"scripts": {
"prepublish": "npm run build",
"build": "npm run clean && tsc",
"clean": "rm -rf dist",
"test": "jest",
"lint": "tslint --fix src/**/*.ts",
"format": "prettier --write package.json testcontainer.Dockerfile.js src/**/*.ts"
},
"dependencies": {
"debug": "^4.1.1",
"dockerode": "^2.5.8",
"get-port": "^4.1.0",
"node-duration": "^1.0.2",
"stream-to-array": "^2.3.0"
},
"devDependencies": {
"@types/debug": "0.0.31",
"@types/dockerode": "^2.5.10",
"@types/get-port": "^4.0.1",
"@types/jest": "^23.3.12",
"@types/node-fetch": "^2.1.4",
"@types/stream-to-array": "^2.3.0",
"husky": "^1.3.1",
"jest": "^23.6.0",
"node-fetch": "^2.3.0",
"prettier": "^1.15.3",
"ts-jest": "^23.10.5",
"ts-node": "^7.0.1",
"tslint": "^5.12.1",
"tslint-config-prettier": "^1.17.0",
"typescript": "^3.2.2"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run format && npm run test"
}
}
}