forked from voxpelli/node-pg-pubsub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.82 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
{
"name": "@fetchq/pg-pubsub",
"version": "0.9.0",
"description": "A Publish/Subscribe implementation on top of PostgreSQL NOTIFY/LISTEN",
"homepage": "http://github.com/voxpelli/node-pg-pubsub",
"repository": {
"type": "git",
"url": "git://github.com/voxpelli/node-pg-pubsub.git"
},
"author": {
"name": "Pelle Wessman",
"email": "[email protected]",
"url": "http://kodfabrik.se/"
},
"license": "MIT",
"dependencies": {
"@types/pg": "^7.14.10",
"pg": "^8.12.0",
"pg-format": "^1.0.4",
"promised-retry": "^0.6.0",
"verror": "^1.10.1"
},
"engines": {
"node": ">=10.0.0"
},
"main": "index.js",
"scripts": {
"check:dependency-check": "dependency-check *.js 'test/**/*.js' --no-dev -i @types/pg",
"check:installed-check": "installed-check -i eslint",
"check:lint": "eslint .",
"check:types": "tsc",
"check": "run-p check:*",
"test:mocha": "NODE_ENV=test nyc --reporter=lcov --reporter text mocha test/**/*.spec.js",
"test": "run-s check test:*"
},
"devDependencies": {
"@types/chai": "^4.2.8",
"@types/chai-as-promised": "^7.1.2",
"@types/mocha": "^7.0.1",
"@types/node": "^12.12.62",
"@types/verror": "^1.10.3",
"@voxpelli/eslint-config": "^4.0.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"dependency-check": "^4.1.0",
"dotenv": "^8.0.0",
"eslint": "^6.1.0",
"eslint-config-standard": "^14.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsdoc": "^22.0.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"husky": "^4.3.0",
"installed-check": "^3.0.0",
"mocha": "^7.0.1",
"npm-run-all": "^4.1.5",
"nyc": "^15.0.0",
"typescript": "^3.5.3"
},
"publishConfig": {
"access": "public"
}
}