knex/package.json
2014-06-10 11:52:42 -04:00

73 lines
1.8 KiB
JSON

{
"name": "knex",
"version": "0.6.10",
"description": "A batteries-included SQL query & schema builder for Postgres, MySQL and SQLite3 and the Browser",
"main": "knex.js",
"directories": {
"test": "test"
},
"devDependencies": {
"through": "^2.3.4",
"browserify": "^4.0.0",
"gulp": "^3.6.2",
"gulp-bump": "^0.1.8",
"gulp-git": "^0.4.2",
"gulp-shell": "^0.2.5",
"chai": "^1.9.1",
"chai-as-promised": "^4.1.0",
"jshint": "~2.5.1",
"mocha": "^1.20.0",
"mysql": "^2.3.1",
"node-uuid": "~1.4.0",
"pg": "^3.2.0",
"pg-query-stream": "^0.6.0",
"rimraf": "2.x",
"sinon": "^1.10.0",
"sinon-chai": "^2.5.0",
"sqlite3": "^2.2.3",
"mariasql": "~0.1.21",
"mysql2": "~0.12.1"
},
"dependencies": {
"minimist": "~0.0.9",
"bluebird": "1.2.x",
"chalk": "^0.4.0",
"commander": "^2.2.0",
"interpret": "^0.3.2",
"liftoff": "^0.11.0",
"semver": "^2.3.0",
"tildify": "^0.2.0",
"generic-pool-redux": "~0.1.0",
"inherits": "~2.0.1",
"lodash": "~2.4.0",
"mkdirp": "^0.5.0",
"readable-stream": "^1.1.12"
},
"scripts": {
"build": "gulp build",
"test": "mocha -b --check-leaks -R spec test/index.js",
"jshint": "jshint knex.js lib/*",
"release:patch": "npm run jshint && npm test && gulp build && gulp bump --type patch && gulp release",
"release:minor": "npm run jshint && npm test && gulp build && gulp bump --type minor && gulp release"
},
"bin": {
"knex": "./lib/bin/cli.js"
},
"repository": {
"type": "git",
"url": "https://github.com/tgriesser/knex.git"
},
"keywords": [
"sql",
"query",
"postgresql",
"mysql",
"sqlite3"
],
"author": {
"name": "Tim Griesser",
"web": "https://github.com/tgriesser"
},
"license": "MIT"
}