{ "name": "ci-node-query", "version": "5.0.0", "description": "A query builder for node based on the one in CodeIgniter", "author": "Timothy J Warren ", "engines": { "node": ">=6.0.0" }, "files": [ "lib/" ], "contributors": [ { "name": "Timothy J Warren", "email": "tim@timshomepage.net" } ], "repository": { "type": "git", "url": "https://git.timshomepage.net/timw4mail/node-query.git" }, "keywords": [ "codeigniter", "mariadb", "mysql", "query builder", "postgres", "postgresql", "sql", "sqlite", "sqlite3" ], "bugs": { "url": "https://git.timshomepage.net/timw4mail/node-query/issues" }, "main": "lib/NodeQuery.js", "dependencies": { "dblite": "~0.7.6", "getargs": "~0.0.8", "glob": "^7.0.3", "mysql2": "^1.0.0-rc.1", "node-firebird": "^0.7.5", "pg": "^6.0.0", "require-reload": "~0.2.2", "sqlite3": "^3.1.8", "xregexp": "^3.0.0" }, "devDependencies": { "chai": "^3.5.0", "chai-as-promised": "^6.0.0", "documentation": "^3.0.4", "eslint": "^3.5.0", "globstar": "^1.0.0", "happiness": "^7.1.2", "istanbul": "~0.4.2", "mocha": "^3.0.0", "npm-run-all": "^3.0.0", "nsp": "^2.2.1" }, "license": "MIT", "scripts": { "audit": "nsp check", "build": "npm-run-all --parallel lint:src lint:tests docs coverage", "coverage": "istanbul cover ./node_modules/mocha/bin/_mocha", "default": "npm-run-all --parallel audit lint:src lint:tests && npm run test", "predocs": "globstar -- documentation build -f md -o API.md \"lib/*.js\"", "docs": "globstar -- documentation build -f html -o docs \"lib/*.js\"", "happy": "happiness \"lib/**/*.js\" \"test/**/*.js\"", "happy:src": "happiness \"lib/**/*.js\"", "happy:tests": "happiness \"test/**/*.js\"", "lint": "npm-run-all lint:tests lint:src && happy", "lint:src": "eslint ./lib", "lint:tests": "eslint ./test", "test": "mocha -R spec" } }