forked from datalanche/node-pg-format
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 895 Bytes
/
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
{
"author": {
"name": "Datalanche, Inc.",
"url": "https://www.datalanche.com"
},
"name": "pg-format",
"license": "MIT",
"homepage": "https://github.com/datalanche/node-pg-format",
"description": "Node.js implementation of PostgreSQL's format() to safely create dynamic SQL queries.",
"version": "1.3.0",
"repository": {
"type": "git",
"url": "https://github.com/datalanche/node-pg-format.git"
},
"main": "lib/index.js",
"directories": {
"lib": "./lib"
},
"engines": {
"node": ">=4.0"
},
"dependencies": {
},
"devDependencies": {
"istanbul": "0.4.2",
"mocha": "2.4.5",
"should": "8.2.1"
},
"scripts": {
"test": "node ./node_modules/mocha/bin/mocha",
"cover-test": "node_modules/.bin/istanbul cover node_modules/.bin/_mocha"
}
}