-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
45 lines (45 loc) · 1014 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
40
41
42
43
44
45
{
"name": "plywood-postgres-requester",
"version": "1.4.0",
"description": "Postgres requester for Plywood (within node)",
"keywords": [
"postgres",
"requester"
],
"author": {
"name": "Vadim Ogievetsky",
"url": "http://vadim.ogievetsky.com"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "http://github.com/implydata/plywood-postgres-requester.git"
},
"main": "build/postgresRequester.js",
"typings": "build/postgresRequester.d.ts",
"files": [
"build/"
],
"scripts": {
"prepare": "tdi -q",
"compile": "tsc",
"watch": "tsc --watch",
"pretest": "tsc",
"test": "mocha"
},
"dependencies": {
"pg": "~7.4.3",
"postgres-date-utc": "~1.0.3",
"plywood-base-api": "~0.2.8"
},
"devDependencies": {
"@types/mocha": "5.2.5",
"@types/node": "10.10.1",
"chai": "4.1.2",
"mocha": "5.2.0",
"stream-to-array": "2.3.0",
"tdi": "0.6.4",
"tslint": "5.11.0",
"typescript": "3.0.3"
}
}