-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.06 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
{
"name": "@blendsdk/schemakit",
"version": "0.9.6",
"description": "A PostgreSQL schema and related TypeScript type generator",
"main": "dist/index.js",
"author": "Gevik Babakhani <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/blendsdk/schemakit.git"
},
"keywords": [
"postgres",
"postgresql",
"typescript",
"code generator"
],
"license": "MIT",
"types": "./dist/index.d.ts",
"scripts": {
"build": "rm -fR ./dist && tsc",
"watch": "rm -fR ./dist && tsc -w ",
"fiddle": "node ./dist/fiddle.js",
"test": "jest --detectOpenHandles",
"patch-publish": "is_git_branch master && yarn build && yarn publish --patch --access public && git push origin master --tags"
},
"dependencies": {
"@blendsdk/stdlib": "^1.0.6",
"chalk": "^2.4.2",
"pg": "^7.12.1",
"tslib": "^1.10.0"
},
"devDependencies": {
"@blendsdk/git": "^1.0.3",
"@types/jest": "^24.0.17",
"@types/pg": "^7.4.14",
"jest": "^24.8.0",
"ts-jest": "^24.0.2",
"typescript": "^3.5.3"
}
}