objection
Version:
An SQL-friendly ORM for Node.js
97 lines (96 loc) • 3.48 kB
JSON
{
"name": "objection",
"version": "0.7.4",
"description": "An SQL-friendly ORM for Node.js",
"main": "lib/objection.js",
"license": "MIT",
"scripts": {
"build": "node build",
"test": "npm run build && istanbul --config=.istanbul.yml cover _mocha -- --slow 10 --timeout 15000 --reporter spec --recursive tests",
"test-travis": "npm run build && istanbul --config=.istanbul.yml cover _mocha -- --slow 100 --timeout 60000 --reporter spec --recursive tests",
"test-bail": "mocha --slow 10 --timeout 15000 --reporter spec --recursive tests --bail",
"test-only": "mocha --slow 10 --timeout 15000 --reporter spec --recursive tests",
"test-opt": "mocha --slow 10 --timeout 15000 --reporter spec --recursive tests --bail --trace_opt --trace_deopt --trace_inlining",
"coveralls": "cat ./testCoverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"perf": "mocha --slow 60000 --timeout 60000 --reporter spec --recursive perf",
"prepublish": "npm run build"
},
"publishConfig": {
"tag": "next"
},
"author": {
"name": "Sami Koskimäki",
"email": "sami.koskimaki@vincit.com",
"url": "https://github.com/koskimas"
},
"contributors": [
"Mikael Lepistö <mikael.lepisto@vincit.com> (https://github.com/elhigu)"
],
"repository": {
"type": "git",
"url": "git://github.com/vincit/objection.js.git"
},
"keywords": [
"orm",
"knex",
"sql",
"query",
"postgresql",
"mysql",
"sqlite3"
],
"files": [
"README.md",
"LICENSE",
"lib/*",
"src/*",
"typings/*"
],
"types": "./typings/objection/index.d.ts",
"dependencies": {
"ajv": "^4.8.2",
"babel-runtime": "^6.6.1",
"bluebird": "^3.4.6",
"lodash": "^4.7.0"
},
"peerDependencies": {
"knex": "0.x"
},
"devDependencies": {
"@types/knex": "^0.0.36",
"babel-core": "^6.3.17",
"babel-plugin-check-es2015-constants": "^6.3.13",
"babel-plugin-transform-class-properties": "^6.3.13",
"babel-plugin-transform-decorators-legacy": "^1.3.3",
"babel-plugin-transform-es2015-arrow-functions": "^6.3.13",
"babel-plugin-transform-es2015-block-scoped-functions": "^6.3.13",
"babel-plugin-transform-es2015-block-scoping": "^6.3.13",
"babel-plugin-transform-es2015-classes": "^6.3.13",
"babel-plugin-transform-es2015-computed-properties": "^6.3.13",
"babel-plugin-transform-es2015-destructuring": "^6.3.13",
"babel-plugin-transform-es2015-duplicate-keys": "^6.3.13",
"babel-plugin-transform-es2015-function-name": "^6.3.13",
"babel-plugin-transform-es2015-literals": "^6.3.13",
"babel-plugin-transform-es2015-modules-commonjs": "^6.3.13",
"babel-plugin-transform-es2015-parameters": "^6.3.13",
"babel-plugin-transform-es2015-shorthand-properties": "^6.3.13",
"babel-plugin-transform-es2015-spread": "^6.3.13",
"babel-plugin-transform-es2015-sticky-regex": "^6.3.13",
"babel-plugin-transform-es2015-template-literals": "^6.3.13",
"babel-plugin-transform-es2015-typeof-symbol": "^6.3.13",
"babel-plugin-transform-es2015-unicode-regex": "^6.3.13",
"babel-plugin-transform-runtime": "^6.3.13",
"coveralls": "^2.11.2",
"expect.js": "^0.3.1",
"fs-extra": "^2.0.0",
"glob": "^7.0.3",
"istanbul": "^0.4.0",
"knex": "0.x",
"mocha": "^2.3.4",
"mysql": "^2.7.0",
"pg": "^6.1.2",
"source-map-support": "^0.4.3",
"sqlite3": "^3.0.8",
"typescript": "^2.2.1"
}
}