|
| 1 | +{ |
| 2 | + "name": "ts-postgres", |
| 3 | + "version": "0.1.0", |
| 4 | + "description": "PostgreSQL client in TypeScript", |
| 5 | + "declaration": true, |
| 6 | + "keywords": [ |
| 7 | + "database", |
| 8 | + "postgres", |
| 9 | + "postgresql", |
| 10 | + "rdbms" |
| 11 | + ], |
| 12 | + "homepage": "https://github.com/malthe/ts-postgres", |
| 13 | + "main": "dist/src/index.js", |
| 14 | + "types": "dist/src/index.d.ts", |
| 15 | + "author": "Malthe Borch <[email protected]>", |
| 16 | + "dependencies": { |
| 17 | + "ts-typed-events": "^1.1.1" |
| 18 | + }, |
| 19 | + "repository": { |
| 20 | + "type": "git", |
| 21 | + "url": "git://github.com/malthe/ts-postgres.git" |
| 22 | + }, |
| 23 | + "license": "MIT", |
| 24 | + "engines": { |
| 25 | + "node": ">=10.7.0" |
| 26 | + }, |
| 27 | + "minNativeVersion": "2.3.0", |
| 28 | + "scripts": { |
| 29 | + "lint": "tslint --project tsconfig.json -t codeFrame 'src/**/*.ts' 'test/**/*.ts'", |
| 30 | + "prebuild": "rimraf dist", |
| 31 | + "build": "tsc", |
| 32 | + "test": "jest --verbose", |
| 33 | + "test:watch": "jest --watch", |
| 34 | + "test:prod": "npm run lint && npm run test -- --coverage --no-cache" |
| 35 | + }, |
| 36 | + "jest": { |
| 37 | + "transform": { |
| 38 | + "^.+\\.ts$": "ts-jest" |
| 39 | + }, |
| 40 | + "testEnvironment": "node", |
| 41 | + "testRegex": "(/__tests__/.*|\\.(test|spec))\\.ts$", |
| 42 | + "moduleFileExtensions": [ |
| 43 | + "ts", |
| 44 | + "js" |
| 45 | + ], |
| 46 | + "coveragePathIgnorePatterns": [ |
| 47 | + "/node_modules/", |
| 48 | + "/test/" |
| 49 | + ], |
| 50 | + "coverageThreshold": { |
| 51 | + "global": { |
| 52 | + "branches": 70, |
| 53 | + "functions": 85, |
| 54 | + "lines": 85, |
| 55 | + "statements": 85 |
| 56 | + } |
| 57 | + }, |
| 58 | + "collectCoverage": true |
| 59 | + }, |
| 60 | + "prettier": { |
| 61 | + "semi": true, |
| 62 | + "singleQuote": true |
| 63 | + }, |
| 64 | + "devDependencies": { |
| 65 | + "@types/jest": "^22.0.0", |
| 66 | + "@types/node": "^10.11.0", |
| 67 | + "colors": "^1.1.2", |
| 68 | + "jest": "^22.0.2", |
| 69 | + "lint-staged": "^7.1.3", |
| 70 | + "prettier": "^1.13.4", |
| 71 | + "prompt": "^1.0.0", |
| 72 | + "rimraf": "^2.6.1", |
| 73 | + "ts-jest": "^23.10.2", |
| 74 | + "ts-node": "^6.0.0", |
| 75 | + "tslint": "^5.8.0", |
| 76 | + "tslint-config-prettier": "^1.1.0", |
| 77 | + "tslint-config-standard": "^7.0.0", |
| 78 | + "typescript": "^3.1.1" |
| 79 | + } |
| 80 | +} |
0 commit comments