node-query/package.json

97 lines
2.3 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",
"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": {
"node": ">=6.0.0"
2014-10-28 09:46:27 -04:00
},
"files": [
"lib/"
],
"contributors": [
{
"name": "Timothy J Warren",
"email": "tim@timshomepage.net"
}
],
2014-10-20 16:56:45 -04:00
"repository": {
"type": "git",
"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",
"mariadb",
"mysql",
"mssql",
2014-10-31 11:57:44 -04:00
"query builder",
"postgres",
"postgresql",
"sql",
2014-10-31 11:57:44 -04:00
"sqlite",
"sqlite3",
"sqlserver"
2014-10-31 11:57:44 -04:00
],
2014-10-20 16:56:45 -04:00
"bugs": {
"url": "https://git.timshomepage.net/timw4mail/node-query/issues"
2014-10-20 16:56:45 -04:00
},
"main": "lib/NodeQuery.js",
2014-10-20 16:56:45 -04:00
"dependencies": {
2017-02-28 16:43:09 -05:00
"dblite": "^0.7.8",
"getargs": "~0.0.8",
2016-03-14 16:07:39 -04:00
"glob": "^7.0.3",
2017-02-28 16:43:09 -05:00
"mysql2": "^1.2.0",
"node-firebird": "^0.8.1",
"pg": "^6.1.2",
"require-reload": "~0.2.2",
2017-02-28 16:43:09 -05:00
"sqlite3": "^3.1.8",
"tedious": "^1.14.0",
"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",
"chai-as-promised": "^6.0.0",
2016-11-18 22:07:50 -05:00
"documentation": "latest",
"eslint": "^3.5.0",
2016-03-28 14:11:05 -04:00
"globstar": "^1.0.0",
"happiness": "^7.1.2",
2017-02-28 15:47:29 -05:00
"jest": "^19.0.2",
"jsdoc": "^3.4.3",
"npm-run-all": "^4.0.2",
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",
2017-02-28 15:47:29 -05:00
"jest": {
"coverageDirectory": "coverage",
"coverageReporters": [
"html",
"json",
"lcov",
"text-summary"
],
"testEnvironment": "node",
"testMatch": [
"**/test/**/*_test.js"
]
},
2014-10-24 10:30:54 -04:00
"scripts": {
2016-03-28 14:11:05 -04:00
"audit": "nsp check",
"build": "npm-run-all --parallel lint:src lint:tests docs coverage",
2017-02-28 15:47:29 -05:00
"coverage": "jest --coverage",
2016-03-28 14:11:05 -04:00
"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\"",
"postdocs": "jsdoc lib -r -d documentation",
"happy": "happiness \"lib/**/*.js\" \"test/**/*.js\"",
"happy:src": "happiness \"lib/**/*.js\"",
"happy:tests": "happiness \"test/**/*.js\"",
2017-02-28 15:47:29 -05:00
"lint": "npm-run-all lint:tests lint:src happy",
"lint:src": "eslint ./lib",
"lint:tests": "eslint ./test",
2017-02-28 15:47:29 -05:00
"test": "jest"
},
"peerDependencies": {
2017-02-28 16:43:09 -05:00
"pg-native": "^1.10.0"
2014-10-24 10:30:54 -04:00
}
}