-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.33 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.33 KB
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
{
"name": "glider",
"version": "0.1.0",
"description": "Simple, expressive, Promise-based API for interacting with Postgres",
"main": "index.js",
"scripts": {
"cover": "./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha",
"cover-travis": "./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"execute": "if [ -z ${TRAVIS+x} ]; then node_modules/mocha/bin/_mocha; else npm run cover-travis; fi; ",
"vagrant": "if [ -z ${TRAVIS+x} ]; then vagrant up; fi;",
"test": "npm run vagrant; babel src -d lib; npm run execute;"
},
"files": [
"lib",
"src",
"index.js"
],
"keywords": [
"postgresql",
"postgres",
"pg",
"promise",
"node-postgres",
"transaction"
],
"author": "Tony Lukasavage",
"repository": {
"type": "git",
"url": "https://github.com/Innovu/glider.git"
},
"license": "MIT",
"dependencies": {
"pg": "^4.5.1"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-preset-es2015": "^6.6.0",
"coveralls": "^2.11.8",
"istanbul": "^0.4.2",
"mocha": "^2.4.5",
"mocha-lcov-reporter": "^1.2.0",
"should": "^8.2.2"
},
"engine-strict": true,
"engines": {
"node": ">=0.12"
}
}