forked from dmfay/massive-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.7 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
64
65
66
67
68
{
"name": "massive",
"version": "4.3.0",
"description": "A small query tool for Postgres that embraces json and makes life simpler",
"homepage": "https://dmfay.github.io/massive-js/",
"bugs": "https://github.com/dmfay/massive-js/issues",
"main": "index.js",
"bin": {
"massive": "bin/massive.js"
},
"directories": {
"bin": "bin",
"lib": "lib",
"test": "test"
},
"engines": {
"node": ">= 6.0.0"
},
"scripts": {
"test": "nyc --reporter=html --reporter=text mocha",
"lint": "eslint '.'",
"docs": "rm -rf ./docs/api && jsdoc -d ./docs/api -c ./.jsdoc.json -r",
"docserver": "npm run docs && cd docs && bundle exec jekyll serve",
"posttest": "npm run lint",
"preversion": "sh build/apidocs.sh",
"postversion": "sh build/update-gh-pages.sh",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"keywords": [
"postgres",
"pg",
"postgresql",
"sql",
"database",
"datamapper",
"data-mapper",
"promise",
"promises"
],
"author": "Dian Fay <[email protected]>",
"contributors": [
"Karl Seguin <[email protected]>",
"John Atten <[email protected]>",
"Rob Conery <[email protected]>"
],
"license": "BSD-3-Clause",
"dependencies": {
"commander": "~2.11.0",
"glob": "~7.1.1",
"lodash": "~4.17.4",
"pg-promise": "~6.7.1",
"pg-query-stream": "~1.0.0"
},
"devDependencies": {
"chai": "~4.1.0",
"chai-as-promised": "~7.1.1",
"co-mocha": "~1.2.0",
"coveralls": "~3.0.0",
"eslint": "~4.8.0",
"jsdoc": "^3.5.4",
"mocha": "~3.5.1",
"nyc": "~11.2.0"
},
"repository": {
"type": "git",
"url": "https://github.com/dmfay/massive-js.git"
}
}