-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.23 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
57
{
"name": "pg-connector",
"version": "0.1.6",
"main": "index.js",
"description": "A ORM library for Postgresql on NodeJS",
"author": {
"name": "Janden Ma",
"email": "jandenma@vip.qq.com"
},
"private": false,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/JandenMa/pg-connector"
},
"bugs": {
"url": "https://github.com/JandenMa/pg-connector/issues",
"email": "jandenma@vip.qq.com"
},
"homepage": "https://jandenma.github.io/pg-connector/",
"dependencies": {
"lodash": "^4.17.20",
"pg": "^8.4.1"
},
"devDependencies": {
"@types/lodash": "^4.14.149",
"@types/node": "^12.12.37",
"@types/pg": "^7.14.5",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-prettier": "^3.1.2",
"typescript": "^3.5.3"
},
"files": [
"*.js",
"*.d.ts",
"library/**/*.js",
"library/**/*.d.ts",
".gitignore",
"package.json",
"README.md",
"LibModel.md",
"LibDataAccess.md",
"LibSQLBuilder.md",
"LICENSE"
],
"scripts": {
"build": "./node_modules/.bin/tsc && node index.js"
},
"keywords": [
"orm",
"nodejs",
"postgres",
"postgresql"
]
}