forked from dmfay/massive-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 1.97 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "massive",
"version": "5.4.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"
},
"files": [
"bin",
"*.md",
"docs/*.md",
"*.js",
"lib"
],
"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",
"release": "standard-version",
"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",
"standard-version": {
"scripts": {
"prerelease": "sh build/apidocs.sh",
"posttag": "sh build/update-gh-pages.sh"
}
},
"dependencies": {
"commander": "2.18.0",
"glob": "7.1.3",
"lodash": "4.17.11",
"pg-promise": "8.4.6",
"pg-query-stream": "1.1.1"
},
"devDependencies": {
"chai": "4.1.2",
"chai-as-promised": "7.1.1",
"co-mocha": "1.2.2",
"coveralls": "3.0.2",
"eslint": "5.0.1",
"jsdoc": "3.5.5",
"mocha": "5.2.0",
"nyc": "12.0.2",
"standard-version": "4.4.0"
},
"repository": {
"type": "git",
"url": "https://github.com/dmfay/massive-js.git"
}
}