-
Notifications
You must be signed in to change notification settings - Fork 56
/
package.json
56 lines (56 loc) · 1.33 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
{
"name": "pg-types",
"version": "4.0.2",
"description": "Query result type converters for node-postgres",
"main": "index.js",
"scripts": {
"coverage": "nyc --reporter=html npm test && open-cli coverage/index.html",
"coverage-ci": "nyc --reporter=lcov npm test && codecov",
"lint": "standard",
"test": "npm run test-js && npm run test-ts && npm run lint",
"test-js": "tape test/*.js | tap-spec",
"test-ts": "tsd"
},
"repository": {
"type": "git",
"url": "git://github.com/brianc/node-pg-types.git"
},
"keywords": [
"postgres",
"PostgreSQL",
"pg"
],
"author": "Brian M. Carlson",
"license": "MIT",
"bugs": {
"url": "https://github.com/brianc/node-pg-types/issues"
},
"homepage": "https://github.com/brianc/node-pg-types",
"devDependencies": {
"@types/node": "^14.14.33",
"codecov": "^3.8.1",
"nyc": "^15.1.0",
"open-cli": "^6.0.1",
"standard": "^16.0.3",
"tap-spec": "^5.0.0",
"tape": "^5.2.2",
"tsd": "^0.14.0"
},
"dependencies": {
"pg-int8": "1.0.1",
"pg-numeric": "1.0.2",
"postgres-array": "~3.0.1",
"postgres-bytea": "~3.0.0",
"postgres-date": "~2.1.0",
"postgres-interval": "^3.0.0",
"postgres-range": "^1.1.1"
},
"files": [
"index.js",
"index.d.ts",
"lib"
],
"engines": {
"node": ">=10"
}
}