-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
39 lines (39 loc) · 1001 Bytes
/
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
{
"name": "pg-server",
"version": "0.1.5",
"description": "Postgres DB server emulator, proxy or honeypot",
"keywords": [
"postgres",
"postgresql",
"database",
"db",
"emulator",
"server",
"honeypot",
"proxy",
"pg-mem",
"pgsql-ast-parser"
],
"main": "index.js",
"scripts": {
"dev": "ts-node-dev --inspect=4321 --respawn --transpile-only _test.ts",
"typecheck": "tsc --project tsconfig.json --noEmit",
"build": "tsc --project tsconfig.json",
"release": "git diff --exit-code && npm run build && cp README.md lib/readme.md && cp package.json lib/package.json && npm publish lib"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^14.14.22",
"@types/pg": "^7.14.9",
"pg": "^8.5.1",
"pgsql-ast-parser": "^4.1.8",
"source-map-support": "^0.5.19",
"ts-node": "^9.1.1",
"ts-node-dev": "^1.1.1",
"typescript": "^4.1.3"
},
"dependencies": {
"pg-protocol": "^1.4.0"
}
}