knex/package.json
Rhys van der Waerden 360ffc77d3 release 0.9.0
2015-11-02 14:54:38 +11:00

101 lines
2.6 KiB
JSON

{
"name": "knex",
"version": "0.9.0",
"description": "A batteries-included SQL query & schema builder for Postgres, MySQL and SQLite3 and the Browser",
"main": "knex.js",
"dependencies": {
"bluebird": "^2.9.24",
"chalk": "^1.0.0",
"commander": "^2.2.0",
"debug": "^2.1.3",
"inherits": "~2.0.1",
"interpret": "^0.6.5",
"liftoff": "~2.0.0",
"lodash": "^3.7.0",
"minimist": "~1.1.0",
"mkdirp": "^0.5.0",
"pg-connection-string": "^0.1.3",
"pool2": "^1.1.0",
"readable-stream": "^1.1.12",
"tildify": "~1.0.0",
"v8flags": "^2.0.2"
},
"devDependencies": {
"JSONStream": "^1.0.3",
"async": "^0.9.0",
"babel": "^5.2.17",
"chai": "^2.3.0",
"coveralls": "~2.11.1",
"istanbul": "~0.3.0",
"jshint": "^2.7.0",
"mariasql": "^0.2.3",
"mocha": "^2.2.4",
"mysql": "^2.6.2",
"mysql2": "^0.15.5",
"node-uuid": "~1.4.0",
"pg": "^4.3.0",
"pg-query-stream": "^0.7.0",
"rimraf": "2.x",
"sinon": "^1.10.0",
"sinon-chai": "^2.5.0",
"sqlite3": "^3.0.5",
"tap-spec": "^4.0.0",
"tape": "^4.0.0",
"through": "^2.3.4"
},
"scripts": {
"dev": "babel -L -D -w src/ --out-dir lib/",
"babel": "babel -L -D src/ --out-dir lib/",
"build": "./scripts/build.sh",
"tape": "node test/tape/index.js | tap-spec",
"test": "npm run babel && npm run jshint && istanbul --config=test/.istanbul.yml cover node_modules/mocha/bin/_mocha -- --check-leaks -t 5000 -b -R spec test/index.js && npm run tape",
"plaintest": "mocha --check-leaks -t 10000 -b -R spec test/index.js && npm run tape",
"coveralls": "cat ./test/coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"jshint": "jshint --exclude=test/coverage/. test/. src/."
},
"bin": {
"knex": "./lib/bin/cli.js"
},
"repository": {
"type": "git",
"url": "git://github.com/tgriesser/knex.git"
},
"keywords": [
"sql",
"query",
"postgresql",
"mysql",
"mariadb",
"sqlite3",
"oracle"
],
"author": {
"name": "Tim Griesser",
"web": "https://github.com/tgriesser"
},
"browser": {
"bluebird/js/main/promise": "./lib/util/bluebird.js",
"./lib/migrate/index.js": "./lib/util/noop.js",
"./lib/bin/cli.js": "./lib/util/noop.js",
"./lib/seed/index.js": "./lib/util/noop.js",
"pool2": "./lib/util/noop.js",
"mysql": false,
"mysql2": false,
"mariasql": false,
"pg": false,
"pg-query-stream": false,
"oracle": false,
"strong-oracle": false,
"sqlite3": false
},
"files": [
"README.md",
"src/*",
"lib/*",
"build/*",
"knex.js",
"LICENSE"
],
"license": "MIT"
}