forked from jawj/zapatos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.31 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
{
"name": "zapatos",
"version": "2.0.1",
"description": "Zero-Abstraction Postgres for TypeScript",
"homepage": "https://jawj.github.io/zapatos/",
"repository": {
"type": "git",
"url": "https://github.com/jawj/zapatos"
},
"prepublish": "tsc",
"main": "dist/generate",
"bin": {
"zapatos": "dist/generate-schema.js"
},
"scripts": {
"lint": "eslint --ext .ts .",
"build": "tsc",
"version": "npm run lint && npm run build",
"postversion": "git push && git push --tags && npm publish",
"postinstall": "node -e \"console.warn('>>> \\u001b[1;33mZapatos was installed or upgraded. Please (re-)run \\u001b[1;32mnpx zapatos\\u001b[1;33m.\\u001b[0m <<<\\u000a')\""
},
"files": [
"/dist",
"/src"
],
"keywords": [
"postgres",
"typescript",
"orm",
"sql"
],
"author": "George MacKerron",
"license": "MIT",
"peerDependencies": {
"typescript": ">=3.8.3",
"pg": ">=7.18.2",
"@types/pg": ">=7.14.3"
},
"devDependencies": {
"@types/pg": "^7.14.5",
"@typescript-eslint/eslint-plugin": "^4.4.0",
"@typescript-eslint/parser": "^4.4.0",
"eslint": "^7.10.0",
"eslint-config-prettier": "^6.12.0",
"pg": "^8.4.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
},
"dependencies": {
"eslint-plugin-import": "^2.22.1"
}
}