forked from summer4096/simple-postgres
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.67 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
{
"name": "@fdy/simple-postgres",
"version": "7.0.2",
"description": "a minimal postgres interface for node",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"keywords": [
"pg",
"simple",
"postgres",
"postgresql",
"database"
],
"author": "Madeline Davies <[email protected]>",
"contributors": [
"Eric Kidd <[email protected]>",
"Nicholas Husher <[email protected]>"
],
"license": "MIT",
"files": [
"dist/src/**/*.d.ts",
"dist/src/**/*.js"
],
"engines": {
"node": ">=14"
},
"dependencies": {
"find-root": "^1.1.0",
"pg": "^8.3.2",
"pg-connection-string": "^2.3.0",
"selectstar": "^1.1.11"
},
"repository": {
"type": "git",
"url": "https://github.com/fdy/simple-postgres.git"
},
"scripts": {
"build": "tsc",
"prettier": "prettier --write .",
"lint": "eslint src/**/*.ts test/**/*.ts",
"prepublishOnly": "rm -rf dist && npm run build",
"test": "docker-compose run test",
"cover": "c8 --check-coverage --lines=98 -r text -r html node -r ts-node/register test/test.ts"
},
"devDependencies": {
"@types/blue-tape": "^0.1.33",
"@types/find-root": "^1.1.2",
"@types/node": "^14.14.41",
"@types/pg": "^7.14.5",
"@types/pg-connection-string": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"blue-tape": "^1.0.0",
"c8": "^7.3.0",
"eslint": "^7.9.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"prettier": "^2.1.2",
"ts-node": "^9.1.1",
"typescript": "^4.0.3"
},
"optionalDependencies": {
"pg-query-stream": "^4.1.0"
}
}