-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.25 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
{
"name": "pg-parameterize",
"version": "2.0.7",
"description": "A small helper to parameterize your node-pg query",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"lint": "tslint --project tsconfig.json ./src/*.ts",
"lint-fix": "tslint ./src/*.ts --fix",
"clean": "rm -rf dist/",
"compile": "tsc",
"compile-watch": "tsc --watch",
"test": "jest dist/test.js",
"test-watch": "jest ./dist/test --watch -o --reporters=jest-simple-dot-reporter",
"coverage": "jest ./dist/test --coverage && cat ./coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/bergur/pg-parameterize.git"
},
"keywords": [
"postgres",
"node-postgres",
"parameter",
"query",
"?",
"$",
"$1"
],
"author": "bergur@bergur.is",
"license": "MIT",
"bugs": {
"url": "https://github.com/bergur/pg-parameterize/issues"
},
"homepage": "https://github.com/bergur/pg-parameterize#readme",
"devDependencies": {
"@types/jest": "^26.0.13",
"coveralls": "^3.1.0",
"jest": "^26.4.2",
"jest-simple-dot-reporter": "^1.0.5",
"tslint": "^6.1.3",
"tslint-config-standard": "^9.0.0",
"typescript": "^4.0.2"
},
"dependencies": {}
}