UNPKG

feathers-knex

Version:

A service plugin for KnexJS a query builder for PostgreSQL, MySQL and SQLite3

92 lines (91 loc) 2.53 kB
{ "name": "feathers-knex", "description": "A service plugin for KnexJS a query builder for PostgreSQL, MySQL and SQLite3", "version": "8.0.1", "homepage": "https://github.com/feathersjs-ecosystem/feathers-knex", "keywords": [ "feathers", "feathers-plugin" ], "licenses": [ { "type": "MIT", "url": "https://github.com/feathersjs-ecosystem/feathers-knex/blob/master/LICENSE" } ], "repository": { "type": "git", "url": "git://github.com/feathersjs-ecosystem/feathers-knex.git" }, "author": { "name": "Feathers contributors", "email": "hello@feathersjs.com", "url": "https://feathersjs.com" }, "contributors": [], "bugs": { "url": "https://github.com/feathersjs-ecosystem/feathers-knex/issues" }, "engines": { "node": ">= 6" }, "main": "lib/", "types": "types", "files": [ "CHANGELOG.md", "LICENSE", "README.md", "lib/**", "types/**", "*.d.ts", "*.js" ], "scripts": { "publish": "git push origin --tags && npm run changelog && git push origin", "changelog": "github_changelog_generator --user feathersjs-ecosystem --project feathers-knex && git add CHANGELOG.md && git commit -am \"Updating changelog\"", "release:patch": "npm version patch && npm publish", "release:minor": "npm version minor && npm publish", "release:major": "npm version major && npm publish", "update-dependencies": "ncu -u", "lint": "semistandard --fix", "dtslint": "dtslint types", "mocha": "shx rm -rf *.sqlite && mocha test/", "test": "npm run lint && npm run dtslint && npm run coverage", "example": "babel-node example/app", "coverage": "nyc npm run mocha" }, "semistandard": { "env": [ "mocha" ] }, "directories": { "lib": "lib" }, "dependencies": { "@feathersjs/adapter-commons": "^4.5.11", "@feathersjs/commons": "^4.5.11", "@feathersjs/errors": "^4.5.11", "debug": "^4.3.2", "is-plain-object": "^5.0.0" }, "devDependencies": { "@feathersjs/adapter-tests": "^4.5.11", "@feathersjs/express": "^4.5.11", "@feathersjs/feathers": "^4.5.11", "body-parser": "^1.19.0", "chai": "^4.3.4", "chai-as-promised": "^7.1.1", "dtslint": "^4.1.6", "knex": "^0.95.11", "loud-rejection": "^2.2.0", "mocha": "^9.1.2", "npm-check-updates": "^11.8.5", "nyc": "^15.1.0", "pg": "^8.7.1", "semistandard": "^16.0.1", "shx": "^0.3.3", "sqlite3": "^5.0.2", "typescript": "^4.4.3" } }