package.json
{
"name": "knex-logger",
"version": "0.1.0",
"description": "Express middleware to log Knex.js queries",
"homepage": "https://github.com/wbyoung/knex-logger",
"bugs": {
"url": "https://github.com/wbyoung/knex-logger/issues"
},
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha --report $(if [ \"$TRAVIS\" ]; then echo lcovonly; else echo html; fi) -- && if [ \"$TRAVIS\" ]; then cat ./coverage/lcov.info | ./node_modules/.bin/coveralls; fi"
},
"repository": {
"type": "git",
"url": "git://github.com/wbyoung/knex-logger.git"
},
"keywords": [
"knex",
"express",
"log",
"debug",
"query",
"sql",
"postgresql",
"mysql",
"sqlite"
],
"author": "Whitney Young",
"license": "MIT",
"devDependencies": {
"chai": "^1.9.1",
"coveralls": "^2.10.0",
"istanbul": "^0.2.11",
"mocha": "^1.20.1",
"sinon": "^1.10.2",
"sinon-chai": "^2.5.0"
},
"dependencies": {
"chalk": "^0.4.0"
}
}