forked from datalanche/node-pg-format
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 924 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 924 Bytes
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
{
"author": {
"name": "Clint Phillips",
"url": "http://github.com/cphillips"
},
"name": "node-pg-format",
"license": "MIT",
"homepage": "https://github.com/cphillips/node-pg-format",
"description": "Node.js implementation of PostgreSQL's format() to safely create dynamic SQL queries.",
"version": "1.3.5",
"repository": {
"type": "git",
"url": "https://github.com/cphillips/node-pg-format.git"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"directories": {
"lib": "./lib"
},
"engines": {
"node": ">=4.0"
},
"devDependencies": {
"@types/expect": "^24.3.0",
"@types/mocha": "^9.1.0",
"@types/node": "^15.0.2",
"mocha": "^9.2.2",
"should": "^13.2.3",
"ts-mocha": "^9.0.2",
"typescript": "^4.2.4"
},
"scripts": {
"prepublish": "npm run build",
"build": "tsc",
"test": "ts-mocha -p tsconfig.json src/**/*.spec.ts"
}
}