UNPKG

objection

Version:
81 lines (80 loc) 2.34 kB
{ "name": "objection", "version": "3.1.4", "description": "An SQL-friendly ORM for Node.js", "main": "lib/objection.js", "license": "MIT", "scripts": { "test": "npm run eslint && mocha --slow 10 --timeout 15000 --reporter spec --recursive tests --exclude \"tests/unit/relations/files/**\" && npm run test:typings", "test:fast": "mocha --slow 10 --timeout 15000 --reporter spec --recursive tests --bail --exclude \"tests/unit/relations/files/**\"", "test:typings": "tsc", "prettier": "prettier --write \"{examples,lib,tests,testUtils,typings,doc}/**/*.{js,ts}\"", "eslint": "eslint --format codeframe \"examples/**/*.js\" \"lib/**/*.js\" \"tests/**/*.js\"", "docs:dev": "vuepress dev doc", "docs:build": "vuepress build doc" }, "publishConfig": { "tag": "latest" }, "author": { "name": "Sami Koskimäki", "email": "sami@jakso.me", "url": "https://github.com/koskimas" }, "contributors": [ "Sami Koskimäki <sami@jakso.me> (https://github.com/koskimas)", "Mikael Lepistö <mikael.lepisto@vincit.com> (https://github.com/elhigu)", "Matthew McEachen <matthew-objection@photostructure.com> (https://github.com/mceachen)", "Jürg Lehni <juerg@scratchdisk.com> (https://github.com/lehni)", "Igor Savin <kibertoad@gmail.com> (https://github.com/kibertoad)" ], "repository": { "type": "git", "url": "git://github.com/vincit/objection.js.git" }, "engines": { "node": ">=14.0.0" }, "keywords": [ "orm", "knex", "sql", "query", "query builder", "postgresql", "mysql", "sqlite3" ], "files": [ "README.md", "LICENSE", "lib/*", "typings/*" ], "types": "./typings/objection/index.d.ts", "dependencies": { "ajv": "^8.12.0", "ajv-formats": "^2.1.1", "db-errors": "^0.2.3" }, "peerDependencies": { "knex": ">=1.0.1" }, "devDependencies": { "@types/node": "^20.10.0", "chai": "^4.3.10", "chai-subset": "^1.6.0", "eslint": "^8.54.0", "eslint-formatter-codeframe": "^7.32.1", "eslint-plugin-prettier": "^5.0.1", "expect.js": "^0.3.1", "knex": "^3.0.1", "mocha": "^10.2.0", "mysql": "^2.18.1", "pg": "^8.11.3", "prettier": "3.2.5", "sqlite3": "^5.1.6", "typescript": ">=5.3.2", "vuepress": "1.9.10" } }