-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
69 lines (69 loc) · 1.88 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
{
"name": "docker-await-postgres",
"description": "wait until postgres container is started ... for real",
"version": "1.0.0",
"license": "MIT",
"repository": "Reservix/docker-await-postgres",
"keywords": [
"docker",
"postgres"
],
"author": "Reservix GmbH <[email protected]> (https://labs.reservix.de)",
"contributors": [
"Sebastian Sebald <[email protected]>"
],
"engines": {
"node": ">=8"
},
"main": "lib/index.js",
"files": [
"lib"
],
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"dependencies": {
"dockerode": "2.5.8",
"execa": "1.0.0",
"get-port": "4.1.0",
"p-retry": "3.0.1",
"pg": "7.8.1"
},
"devDependencies": {
"@types/dockerode": "2.5.12",
"@types/execa": "0.9.0",
"@types/get-port": "4.0.1",
"@types/jest": "24.0.9",
"@types/p-retry": "3.0.0",
"@types/pg": "7.4.13",
"@typescript-eslint/eslint-plugin": "1.4.2",
"conventional-changelog-cli": "2.0.12",
"conventional-changelog-emojis": "3.0.1",
"eslint": "5.14.1",
"eslint-config-prettier": "4.0.0",
"eslint-config-xo": "0.26.0",
"eslint-config-xo-typescript": "0.8.0",
"eslint-plugin-jest": "22.3.0",
"husky": "1.3.1",
"jest": "24.1.0",
"npm-run-all": "4.1.5",
"prettier": "1.16.4",
"pretty-quick": "1.10.0",
"ts-jest": "24.0.0",
"typescript": "3.3.3333"
},
"scripts": {
"start": "tsc",
"example": "tsc && node example",
"test": "jest --config jest.config.js",
"clean": "rm -rf lib coverage",
"typecheck": "tsc --noEmit",
"lint": "eslint \"src/**/*.ts\"",
"format": "prettier --write \"src/**/*.ts\"",
"ci": "jest --config jest.config.js --coverage",
"version": "conventional-changelog -p emojis -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md",
"prepublishOnly": "npm-run-all clean test start"
}
}