forked from dmfay/massive-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.35 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
{
"name": "massive",
"version": "2.6.0",
"description": "A small query tool for Postgres that embraces json and makes life simpler",
"main": "index.js",
"bin": {
"massive": "bin/massive.js"
},
"directories": {
"example": "example",
"test": "test"
},
"scripts": {
"test": "mocha",
"lint": "eslint .",
"posttest": "npm run lint",
"coverage": "istanbul cover _mocha -- -R dot"
},
"keywords": [
"postgres",
"pg",
"postgresql"
],
"author": "Rob Conery <[email protected]>",
"contributors": [
"Karl Seguin <[email protected]>",
"John Atten <[email protected]>",
"Dian Fay <[email protected]>"
],
"license": "BSD-3-Clause",
"dependencies": {
"args-js": "^0.10.12",
"async": "^2.1.4",
"commander": "^2.6.0",
"deasync": "^0.1.1",
"glob": "^7.0.5",
"pg": "^6.1.0",
"pg-query-stream": "^0.7.0",
"promise-polyfill": "^6.0.2",
"strip-bom": "^2.0.0",
"underscore": "^1.8.2"
},
"devDependencies": {
"eslint": "^2.13.1",
"istanbul": "^0.4.2",
"mocha": "^2.5.3",
"sinon": "^1.12.2"
},
"repository": {
"type": "git",
"url": "https://github.com/robconery/massive-js.git"
},
"eslintConfig": {
"extends": "eslint:recommended",
"env": {
"node": true,
"mocha": true
},
"rules": {
"semi": 2
}
}
}