-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
76 lines (76 loc) · 1.89 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
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@deepstream/storage-postgres",
"version": "3.0.8",
"description": "A deepstream.io storage connector for use with deepstream",
"main": "dist/src/connector.js",
"scripts": {
"tsc": "tsc",
"lint": "tslint --project .",
"lint:fix": "npm run lint -- --fix",
"test": "mocha --opts mocha.opts 'test/*.spec.ts' --exit",
"coverage": "nyc mocha 'test/*.spec.ts' --exit",
"ci": "npm run tsc && npm run coverage",
"docker": "docker run -p 5432:5432 -e POSTGRES_PASSWORD=mysecretpassword postgres"
},
"repository": {
"type": "git",
"url": "git+https://github.com/deepstreamIO/deepstream.io-storage-postgres.git"
},
"author": "deepstreamHub GmbH",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/deepstreamIO/deepstream.io-storage-postgres/issues"
},
"keywords": [
"postgres",
"postgresql",
"realtime search",
"realtime",
"deepstream.io"
],
"homepage": "https://deepstream.io/tutorials/integrations/db-postgres/",
"dependencies": {
"@types/pg": "^7.14.3",
"pg": "^8.0.3",
"pg-escape": "^0.2.0",
"ts-essentials": "^6.0.4"
},
"devDependencies": {
"@deepstream/protobuf": "^1.0.1",
"@deepstream/types": "^2.1.0",
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/mongodb": "^3.5.5",
"@types/node": "^13.11.1",
"chai": "^4.2.0",
"coveralls": "^3.0.11",
"husky": "^4.2.5",
"mocha": "^10.2.0",
"nyc": "^15.0.1",
"ts-node": "^8.8.2",
"tslint": "^6.1.1",
"typescript": "^3.8.3"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run tsc",
"pre-push": "npm run tsc"
}
},
"nyc": {
"include": [
"src/*.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register/transpile-only"
],
"reporter": [
"lcov"
],
"sourceMap": true,
"instrument": true
}
}