-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.03 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.03 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
{
"name": "@zaptic-external/pg-plus",
"version": "1.0.5",
"description": "PG plus - a node-pg wrapper",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"repository": "https://github.com/Zaptic/ts-monads",
"scripts": {
"prettier": "prettier --config prettier.config.js '**' --write",
"test": "mocha --colors --require source-map-support/register --ui bdd $(find dist/ -name '*.test.js')",
"tsc": "tsc"
},
"dependencies": {
"@zaptic-external/ts-monads": "^2.0.0",
"lodash": "^4.17.21",
"pg": "8.5.1",
"pg-query-stream": "4.1.0"
},
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/chai-as-promised": "^7.1.4",
"@types/lodash": "^4.14.202",
"@types/mocha": "^9.1.0",
"@types/pg": "7.14.11",
"chai": "4.3.4",
"chai-as-promised": "^7.1.1",
"mocha": "^9.2.0",
"prettier": "2.2.1",
"source-map-support": "0.5.19",
"typescript": "4.2.3"
}
}