-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.42 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.42 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
83
84
85
86
87
{
"name": "@jcoreio/pg-ipc",
"version": "0.0.0-development",
"description": "safer postgres pubsub with auto reconnect, channel length checks, and notify queue during reconnect",
"sideEffects": false,
"scripts": {
"pretest": "if [ -z $CI ]; then defaultenv env/local.js docker-compose up -d; else exit 0; fi",
"tc": "toolchain",
"toolchain": "toolchain",
"test": "toolchain test",
"prepublishOnly": "echo This package is meant to be published by semantic-release from the dist build directory. && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/jcoreio/pg-ipc.git"
},
"keywords": [
"postgres",
"pubsub",
"notify",
"listen",
"ipc"
],
"author": "Andy Edwards",
"license": "MIT",
"bugs": {
"url": "https://github.com/jcoreio/pg-ipc/issues"
},
"homepage": "https://github.com/jcoreio/pg-ipc#readme",
"devDependencies": {
"@jcoreio/toolchain": "^5.10.3",
"@jcoreio/toolchain-circle": "^5.10.3",
"@jcoreio/toolchain-esnext": "^5.10.3",
"@jcoreio/toolchain-mocha": "^5.10.3",
"@jcoreio/toolchain-semantic-release": "^5.10.3",
"@jcoreio/toolchain-typescript": "^5.10.3",
"@types/chai": "^4.3.5",
"@types/chai-as-promised": "^7.1.5",
"@types/mocha": "^10.0.1",
"@types/node": "^16.10.2",
"@types/sinon": "^10.0.6",
"@types/verror": "^1.10.5",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"defaultenv": "^4.1.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^8.3.0",
"globals": "^16.0.0",
"lint-staged": "^15.2.2",
"mocha": "^10.2.0",
"node-tcp-proxy": "^0.0.24",
"nyc": "^15.1.0",
"p-event": "^4.0.0",
"pg": "^8.7.1",
"prettier": "^3.4.2",
"sinon": "^12.0.1",
"typescript": "^5.1.0"
},
"dependencies": {
"@babel/runtime": "^7.26.0",
"@jcoreio/typed-event-emitter": "^1.1.0",
"@types/pg": "^8.6.1",
"strict-event-emitter-types": "^2.0.0",
"verror": "^1.10.1"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"types": {
"import": "./dist/index.d.mts",
"default": "./dist/index.d.ts"
},
"import": "./dist/index.mjs",
"default": "./dist/index.js"
}
},
"engines": {
"node": ">=16"
},
"packageManager": "pnpm@10.6.5",
"@jcoreio/toolchain": {
"migratedVersion": "5.10.3"
}
}