-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
73 lines (73 loc) · 1.75 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@5no/pg-builder",
"version": "1.2.4",
"description": "Simple query builder for PostgreSQL",
"main": "index.js",
"types": "typings/index.d.ts",
"files": [
"index.js",
"typings/app.d.ts",
"typings/index.d.ts",
"lib/index.js",
"lib/index.d.ts",
"lib/*.js",
"lib/*.d.ts",
"lib/builder/*.js",
"lib/builder/*.d.ts",
"lib/builder/helpers/*.js",
"lib/builder/helpers/*.d.ts",
"lib/builder/methods/*.js",
"lib/builder/methods/*.d.ts",
"lib/builder/operations/*.js",
"lib/builder/operations/*.d.ts"
],
"directories": {
"typings": "typings/",
"lib": "lib/"
},
"scripts": {
"clean": "rm -rf lib",
"lint": "eslint --ext .ts src",
"lint:fix": "eslint --fix --ext .ts src",
"test": "mocha test",
"build": "tsc",
"prepare": "yarn lint && yarn clean && yarn build && yarn test"
},
"author": "reb2020",
"license": "MIT",
"keywords": [
"postgresql",
"sql",
"query",
"builder",
"parameter",
"param",
"parameterized"
],
"homepage": "https://5no.io",
"repository": {
"type": "git",
"url": "git+https://github.com/reb2020/5no-pg-builder.git"
},
"dependencies": {
"dotenv": "^8.2.0",
"pg": "^8.5.1",
"pg-pool": "^3.2.2",
"url": "^0.11.0"
},
"devDependencies": {
"@types/node": "^14.6.2",
"@types/pg-pool": "^2.0.2",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"chai": "^4.2.0",
"eslint": "^7.17.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"mocha": "^8.1.3",
"typescript": "^4.1.3"
}
}