UNPKG

objection-find

Version:

Build search queries for objection.js models using HTTP query parameters.

95 lines (94 loc) 2.43 kB
{ "name": "objection-find", "version": "3.0.1", "description": "Build search queries for objection.js models using HTTP query parameters.", "main": "index.js", "types": "index.d.ts", "license": "MIT", "scripts": { "lint": "eslint --format codeframe \"lib/**/*.js\" \"tests/**/*.js\" index.d.ts", "lint:fix": "eslint --fix \"lib/**/*.js\" \"tests/**/*.js\"", "lint:types": "tsc && tsd", "test": "nyc mocha --slow 10 --timeout 7000 --reporter spec tests/test.js", "test-only": "mocha --slow 10 --timeout 50000 --reporter spec tests/test.js", "perf-test": "node tests/perf.js", "perf-test-init": "node tests/perf-init.js", "test:ci": "npm run lint && npm run lint:types && npm run test", "coveralls": "cat ./test-coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js", "prettier": "prettier --write \"{lib,tests}/**/*.{js,ts}\" index.d.ts" }, "author": { "name": "Sami Koskimäki", "email": "sami.koskimaki@vincit.com", "url": "https://github.com/koskimas" }, "contributors": [ { "name": "Igor Savin", "email": "kibertoad@gmail.com", "url": "https://github.com/kibertoad" } ], "repository": { "type": "git", "url": "git://github.com/vincit/objection-find.git" }, "keywords": [ "objection", "sql", "query", "postgresql", "mysql", "sqlite3", "query parameter" ], "files": [ "API.md", "README.md", "LICENSE", "index.js", "index.d.ts", "lib/*" ], "dependencies": { "lodash": "^4.17.20" }, "devDependencies": { "@types/node": "^12.19.1", "@typescript-eslint/eslint-plugin": "^4.5.0", "@typescript-eslint/parser": "^4.5.0", "bluebird": "^3.7.2", "chai": "^4.2.0", "coveralls": "^3.1.0", "eslint": "^6.8.0", "eslint-config-prettier": "^6.11.0", "eslint-plugin-prettier": "^3.1.4", "knex": "~0.21.6", "mocha": "^8.2.0", "mysql": "^2.18.1", "nyc": "^15.1.0", "objection": "^2.2.3", "pg": "^8.4.1", "prettier": "^2.0.5", "sqlite3": "^5.0.0", "tsd": "^0.13.1", "typescript": "^4.0.3" }, "peerDependencies": { "objection": ">=2.0.0 <3.0.0" }, "engines": { "node": ">=8" }, "nyc": { "description": "test coverage", "reporter": [ "lcov", "text" ], "report-dir": "./test-coverage" }, "tsd": { "directory": "tests/types" } }