node-query/package.json

61 lines
1.2 KiB
JSON
Raw Normal View History

2014-10-08 19:44:14 -04:00
{
2014-10-28 10:13:15 -04:00
"name": "ci-node-query",
2014-10-31 11:57:44 -04:00
"version": "0.2.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": {
"node": ">=0.10.0"
},
2014-10-20 16:56:45 -04:00
"repository": {
"type": "git",
2014-10-28 09:46:27 -04:00
"url": "https://github.com/timw4mail/node-query.git"
2014-10-20 16:56:45 -04:00
},
2014-10-31 11:57:44 -04:00
"keywords": [
"codeigniter",
"mysql2",
"mysql",
"query builder",
"pg",
"postgres",
"sqlite",
"dblite"
],
2014-10-20 16:56:45 -04:00
"bugs": {
"url": "https://github.com/timw4mail/node-query/issues"
},
"main": "lib/node-query.js",
"dependencies": {
"getargs": "",
2014-10-31 11:57:44 -04:00
"es6-shim": ""
2014-10-20 16:56:45 -04:00
},
2014-10-28 09:46:27 -04:00
"bundledDependencies": [
2014-10-31 11:57:44 -04:00
"es6-shim",
"getargs"
2014-10-28 09:46:27 -04:00
],
2014-10-20 16:56:45 -04:00
"devDependencies": {
2014-10-31 11:57:44 -04:00
"dblite": "^0.6.1",
2014-10-20 16:56:45 -04:00
"grunt": "^0.4.5",
2014-10-31 11:57:44 -04:00
"grunt-cli": "",
2014-10-24 10:30:54 -04:00
"grunt-contrib-clean": "^0.6.0",
2014-10-20 16:56:45 -04:00
"grunt-contrib-nodeunit": "^0.4.1",
2014-10-24 10:30:54 -04:00
"grunt-istanbul": "^0.3.0",
2014-10-22 10:13:08 -04:00
"grunt-jsdoc": ">=0.6.1",
"jsdoc": "^3.3.0-alpha9",
2014-10-23 10:53:16 -04:00
"mysql": "^2.5.2",
"mysql2": "^0.12.5",
2014-10-31 11:57:44 -04:00
"node-firebird": "^0.2.3",
2014-10-23 10:53:16 -04:00
"nodeunit": "^0.9.0",
"pg": "^3.6.2"
2014-10-20 16:56:45 -04:00
},
"peerDependencies": {
"mysql": "",
"mysql2": "",
2014-10-31 12:33:45 -04:00
"pg": "",
"dblite": ""
2014-10-20 16:56:45 -04:00
},
2014-10-24 10:30:54 -04:00
"license": "MIT",
"scripts": {
"test": "grunt tests"
}
2014-10-20 16:56:45 -04:00
}