|
| 1 | +{ |
| 2 | + "name": "docker-await-postgres", |
| 3 | + "description": "wait until postgres container is started ... for real", |
| 4 | + "version": "0.0.0", |
| 5 | + "license": "MIT", |
| 6 | + "repository": "Reservix/docker-await-postgres", |
| 7 | + "keywords": [ |
| 8 | + "docker", |
| 9 | + "postgres" |
| 10 | + ], |
| 11 | + "author": "Reservix GmbH <[email protected]> (https://labs.reservix.de)", |
| 12 | + "contributors": [ |
| 13 | + "Sebastian Sebald <[email protected]>" |
| 14 | + ], |
| 15 | + "engines": { |
| 16 | + "node": ">=8" |
| 17 | + }, |
| 18 | + "main": "lib/index.js", |
| 19 | + "files": [ |
| 20 | + "lib" |
| 21 | + ], |
| 22 | + "husky": { |
| 23 | + "hooks": { |
| 24 | + "pre-commit": "pretty-quick --staged" |
| 25 | + } |
| 26 | + }, |
| 27 | + "dependencies": {}, |
| 28 | + "devDependencies": { |
| 29 | + "@types/jest": "24.0.6", |
| 30 | + "@typescript-eslint/eslint-plugin": "1.4.0", |
| 31 | + "conventional-changelog-cli": "2.0.12", |
| 32 | + "conventional-changelog-emojis": "3.0.1", |
| 33 | + "eslint": "5.14.1", |
| 34 | + "eslint-config-prettier": "4.0.0", |
| 35 | + "eslint-config-xo": "0.26.0", |
| 36 | + "eslint-config-xo-typescript": "0.8.0", |
| 37 | + "eslint-plugin-jest": "22.3.0", |
| 38 | + "husky": "1.3.1", |
| 39 | + "jest": "24.1.0", |
| 40 | + "npm-run-all": "4.1.5", |
| 41 | + "prettier": "1.16.4", |
| 42 | + "pretty-quick": "1.10.0", |
| 43 | + "ts-jest": "24.0.0", |
| 44 | + "typescript": "3.3.3" |
| 45 | + }, |
| 46 | + "scripts": { |
| 47 | + "start": "tsc", |
| 48 | + "test": "jest --config jest.config.js", |
| 49 | + "clean": "rm -rf lib coverage", |
| 50 | + "typecheck": "tsc --noEmit", |
| 51 | + "lint": "eslint \"src/**/*.ts\"", |
| 52 | + "format": "prettier --write \"src/**/*.ts\"", |
| 53 | + "ci": "jest --config jest.config.js --coverage", |
| 54 | + "version": "conventional-changelog -p emojis -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md", |
| 55 | + "prepublishOnly": "npm-run-all clean test start" |
| 56 | + } |
| 57 | +} |
0 commit comments