-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
63 lines (63 loc) · 1.59 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
{
"name": "pg-reactive",
"version": "1.0.3",
"description": "RxJS interface for PostgreSQL",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"setup-db": "ts-node test/preparation/setup.ts",
"test": "npm install --no-save rxjs@6 && mocha --require ts-node/register test/index.test.ts",
"test:ci": "npm run lint && npm run build && npm test",
"build": "tsc",
"lint": "tslint src/**/*.ts",
"precommit": "lint-staged",
"prepublish": "tsc",
"doc": "typedoc --theme minimal --name 'pg-reactive' --out docs --readme README.md --excludeExternals src"
},
"lint-staged": {
"src/*.{d.ts,ts,json}": [
"prettier --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/haoliangyu/pg-reactive.git"
},
"keywords": [
"postgresql",
"rxjs6",
"rx",
"observable",
"reactive-x"
],
"author": "Haoliang Yu <haholiang.yu@outlook.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/haoliangyu/pg-reactive/issues"
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/config": "0.0.38",
"@types/mocha": "^8.2.0",
"chai": "^4.2.0",
"config": "^3.3.3",
"husky": "^4.3.8",
"lint-staged": "^10.5.3",
"mocha": "^8.2.1",
"prettier": "^2.2.1",
"ts-node": "^9.1.1",
"tslint": "^6.1.3",
"typedoc": "^0.20.16",
"typescript": "^4.1.3"
},
"peerDepedencies": {
"rxjs": ">=6"
},
"dependencies": {
"@types/pg": "^7.14.9",
"@types/pg-query-stream": "^1.0.3",
"pg": "^8.5.1",
"pg-query-stream": "^4.0.0"
}
}