-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.46 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
{
"name": "pg-lazy",
"version": "3.0.2",
"description": "Helpers for node-postgres for Lazy devs",
"main": "index.js",
"directories": {
"src": "src",
"test": "test"
},
"scripts": {
"lint": "semistandard 'src/**/*.js' 'test/**.js' --fix",
"test": "yarn lint && nyc mocha --reporter spec",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"patch": "npm version patch && npm publish",
"minor": "npm version minor && npm publish",
"major": "npm version major && npm publish",
"deploy": "git pull --rebase origin master &&yarn lint && git push origin master"
},
"semistandard": {
"env": [
"mocha",
"es6"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/uniibu/pg-Lazy.git"
},
"devDependencies": {
"chai": "^4.1.2",
"is-travis": "^2.0.0",
"mocha": "^8.1.1",
"nyc": "^15.1.0",
"pg": "^8.0.0",
"semistandard": "^14.2.0"
},
"keywords": [
"node-pg",
"pg",
"postgres",
"helpers",
"one",
"many",
"none",
"async",
"await",
"promises",
"psql"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/uniibu/pg-Lazy/issues"
},
"homepage": "https://github.com/uniibu/pg-Lazy#readme",
"dependencies": {
"pg-minify": "^1.5.1",
"semver": "^7.1.2"
},
"peerDependencies": {
"pg": "^8.0.0"
},
"engine": {
"node": "^10.0.0 || ^12.0.0 || ^14.0.0"
}
}