-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.18 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
{
"name": "pgtyped-model",
"version": "0.3.2",
"description": "",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"postinstall": "yarn build",
"build": "tsc",
"build:examples": "pgtyped -c examples/SampleApp/pgtyped.config.json",
"test": "tap --ts -R spec test/runtime test/types/types.test.ts",
"dev": "tap --ts -R spec -w test/runtime test/types/types.test.ts"
},
"keywords": [],
"author": "Joseph Shaferman <[email protected]>",
"license": "MIT",
"dependencies": {
"@pgtyped/cli": "^2.1.0",
"@pgtyped/runtime": "^2.1.0",
"@types/pg": "^8.6.6"
},
"devDependencies": {
"@types/tap": "^15.0.8",
"@types/uuid": "^9.0.1",
"pg": "^8.10.0",
"prettier": "^2.8.4",
"tap": "^16.3.4",
"ts-node": "^10.9.1",
"typescript": "^5.0.2",
"uuid": "^9.0.0"
},
"peerDependencies": {
"@pgtyped/runtime": "^2.1.0",
"pg": "^8.10.0"
},
"prettier": {
"trailingComma": "all",
"bracketSpacing": false,
"tabWidth": 2,
"semi": false,
"singleQuote": false,
"arrowParens": "always"
},
"tap": {
"nyc-arg": [
"--exclude=examples/SampleApp/classes"
]
}
}