-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.04 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
{
"name": "pg-typegen",
"version": "3.0.3",
"description": "Generate TypeScript type definitions from Postgres database",
"main": "index.js",
"bin": {
"pg-typegen": "index.js"
},
"scripts": {
"test": "tap test/*.js --100 --before=test/helpers/setup-postgres.js",
"test:types": "tsd",
"lint": "standard",
"lint:fix": "standard --fix"
},
"author": "Aldis Ameriks <[email protected]>",
"keywords": [
"typescript",
"types",
"database",
"postgres",
"schema",
"codegen"
],
"repository": {
"type": "git",
"url": "git+https://github.com/aldis-ameriks/pg-typegen.git"
},
"homepage": "https://github.com/aldis-ameriks/pg-typegen#readme",
"bugs": {
"url": "https://github.com/aldis-ameriks/pg-typegen/issues"
},
"license": "MIT",
"dependencies": {
"commander": "^6.1.0",
"postgres": "^2.0.0-beta.0"
},
"devDependencies": {
"eol": "^0.9.1",
"standard": "^16.0.0",
"tap": "^14.10.8",
"tsd": "^0.13.1"
},
"tsd": {
"directory": "test/types"
}
}