-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.32 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
{
"name": "@gasbuddy/configured-postgres-client",
"version": "8.2.0",
"description": "A configuration driven postgres client",
"main": "build/index.js",
"scripts": {
"test": "tap --no-coverage --node-arg=-r --node-arg=@babel/register tests/*.js",
"test-some": "tap --node-arg=-r --node-arg=@babel/register",
"cover": "cross-env BABEL_ENV=test tap tests/test_*.js",
"lint": "eslint .",
"build": "babel src --out-dir build",
"prepublishOnly": "npm run build"
},
"config": {
"coverage": "--lines=70 --statements=70 --functions=60 --branches=40"
},
"bin": {
"run-pg-sql": "build/run-pg-sql.js"
},
"engines": {
"node": ">=8.9"
},
"repository": {
"type": "git",
"url": "git@github.com:gas-buddy/gb-services.git/configured-postgres-client.git"
},
"keywords": [
"postgres",
"gasbuddy"
],
"author": "GasBuddy",
"license": "UNLICENSED",
"devDependencies": {
"@babel/cli": "^7.18.10",
"@babel/register": "^7.18.9",
"babel-preset-gasbuddy": "^6.0.0",
"cross-env": "^7.0.3",
"eslint-config-gasbuddy": "^5.3.0",
"tap": "^15.2.3"
},
"dependencies": {
"pg-promise": "^10.11.1"
},
"nyc": {
"include": [
"src"
],
"require": [
"@babel/register"
],
"sourceMap": false,
"reporter": [
"lcov"
]
}
}