2014-10-08 19:44:14 -04:00
|
|
|
{
|
2014-10-28 10:13:15 -04:00
|
|
|
"name": "ci-node-query",
|
2016-11-10 22:10:45 -05:00
|
|
|
"version": "5.0.0",
|
2014-10-20 16:56:45 -04:00
|
|
|
"description": "A query builder for node based on the one in CodeIgniter",
|
|
|
|
"author": "Timothy J Warren <tim@timshomepage.net>",
|
2014-10-28 09:46:27 -04:00
|
|
|
"engines": {
|
2016-11-10 22:10:45 -05:00
|
|
|
"node": ">=6.0.0"
|
2014-10-28 09:46:27 -04:00
|
|
|
},
|
2016-01-26 19:29:12 -05:00
|
|
|
"files": [
|
|
|
|
"lib/"
|
|
|
|
],
|
2015-01-28 15:34:48 -05:00
|
|
|
"contributors": [
|
|
|
|
{
|
|
|
|
"name": "Timothy J Warren",
|
|
|
|
"email": "tim@timshomepage.net"
|
|
|
|
}
|
|
|
|
],
|
2014-10-20 16:56:45 -04:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2016-02-10 12:54:07 -05:00
|
|
|
"url": "https://git.timshomepage.net/timw4mail/node-query.git"
|
2014-10-20 16:56:45 -04:00
|
|
|
},
|
2014-10-31 11:57:44 -04:00
|
|
|
"keywords": [
|
2014-11-03 11:12:27 -05:00
|
|
|
"codeigniter",
|
2016-09-14 16:50:32 -04:00
|
|
|
"mariadb",
|
|
|
|
"mysql",
|
2014-10-31 11:57:44 -04:00
|
|
|
"query builder",
|
|
|
|
"postgres",
|
2016-09-14 16:50:32 -04:00
|
|
|
"postgresql",
|
|
|
|
"sql",
|
2014-10-31 11:57:44 -04:00
|
|
|
"sqlite",
|
2016-09-14 16:50:32 -04:00
|
|
|
"sqlite3"
|
2014-10-31 11:57:44 -04:00
|
|
|
],
|
2014-10-20 16:56:45 -04:00
|
|
|
"bugs": {
|
2016-02-10 12:54:07 -05:00
|
|
|
"url": "https://git.timshomepage.net/timw4mail/node-query/issues"
|
2014-10-20 16:56:45 -04:00
|
|
|
},
|
2015-12-08 10:53:02 -05:00
|
|
|
"main": "lib/NodeQuery.js",
|
2014-10-20 16:56:45 -04:00
|
|
|
"dependencies": {
|
2016-01-26 19:29:12 -05:00
|
|
|
"dblite": "~0.7.6",
|
|
|
|
"getargs": "~0.0.8",
|
2016-03-14 16:07:39 -04:00
|
|
|
"glob": "^7.0.3",
|
|
|
|
"mysql2": "^1.0.0-rc.1",
|
2016-11-10 22:10:45 -05:00
|
|
|
"node-firebird": "^0.7.5",
|
2016-09-14 16:50:32 -04:00
|
|
|
"pg": "^6.0.0",
|
2016-02-10 12:54:07 -05:00
|
|
|
"require-reload": "~0.2.2",
|
2016-11-18 21:59:22 -05:00
|
|
|
"sqlite3": "^3.1.8",
|
2016-02-10 12:54:07 -05:00
|
|
|
"xregexp": "^3.0.0"
|
2014-10-20 16:56:45 -04:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2016-03-14 16:07:39 -04:00
|
|
|
"chai": "^3.5.0",
|
2016-11-10 22:10:45 -05:00
|
|
|
"chai-as-promised": "^6.0.0",
|
2016-11-18 22:07:50 -05:00
|
|
|
"documentation": "latest",
|
2016-09-14 16:50:32 -04:00
|
|
|
"eslint": "^3.5.0",
|
2016-03-28 14:11:05 -04:00
|
|
|
"globstar": "^1.0.0",
|
2016-11-10 22:10:45 -05:00
|
|
|
"happiness": "^7.1.2",
|
2016-01-26 19:29:12 -05:00
|
|
|
"istanbul": "~0.4.2",
|
2016-09-14 16:50:32 -04:00
|
|
|
"mocha": "^3.0.0",
|
|
|
|
"npm-run-all": "^3.0.0",
|
2016-03-28 14:11:05 -04:00
|
|
|
"nsp": "^2.2.1"
|
2014-10-20 16:56:45 -04:00
|
|
|
},
|
2014-10-24 10:30:54 -04:00
|
|
|
"license": "MIT",
|
|
|
|
"scripts": {
|
2016-03-28 14:11:05 -04:00
|
|
|
"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\"",
|
2016-09-14 16:50:32 -04:00
|
|
|
"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",
|
2016-11-14 21:22:29 -05:00
|
|
|
"test": "mocha -R spec"
|
2014-10-24 10:30:54 -04:00
|
|
|
}
|
2016-02-10 12:54:07 -05:00
|
|
|
}
|