This repository was archived by the owner on Oct 14, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 1.91 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 1.91 KB
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
{
"name": "postgres-typescript",
"version": "1.0.2",
"description": "",
"keywords": [],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"author": "Nicolas HERMENT <nicolas@portchain.com>",
"repository": {
"type": "git",
"url": "https://github.com/Portchain/postgres-typescript"
},
"license": "MIT",
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"lint": "tslint --type-check -p 'tsconfig.json' codeFrame 'src/**/*.ts'",
"build": "tsc",
"test": "jest"
},
"bin": {
"postgres-typescript-codegen": "./src/codegen.js"
},
"jest": {
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"modulePathIgnorePatterns": [
"models"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/"
]
},
"devDependencies": {
"@angular/compiler": "^4.3.6",
"@angular/core": "^4.3.6",
"@types/jest": "^20.0.0",
"@types/node": "^8.10.54",
"codelyzer": "^3.2.0",
"colors": "^1.1.2",
"cross-env": "^5.0.1",
"husky": "^0.14.0",
"jest": "^21.0.0",
"lint-staged": "^4.0.0",
"prompt": "^1.0.0",
"replace-in-file": "^2.5.0",
"rimraf": "^2.6.1",
"rollup": "^0.49.0",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"ts-jest": "^21.0.0",
"ts-node": "^3.0.6",
"tsc-watch": "^1.0.5",
"tslint": "^5.7.0",
"typedoc": "^0.12.0",
"typescript": "^2.5.2",
"zone.js": "^0.8.17"
},
"dependencies": {
"lodash": "4.17.13",
"minimist": "1.2.0",
"moment": "2.22.2",
"pg": "7.4.3",
"pg-connection-string": "2.0.0",
"pg-parameters": "0.2.3",
"rollup-plugin-json": "^3.0.0"
}
}