UNPKG

feathers-sequelize

Version:
94 lines (93 loc) 2.67 kB
{ "name": "feathers-sequelize", "description": "A service adapter for Sequelize an SQL ORM", "version": "7.0.3", "homepage": "https://github.com/feathersjs-ecosystem/feathers-sequelize", "main": "lib/", "types": "lib/", "keywords": [ "feathers", "feathers-plugin", "sequel", "sequelize", "mysql", "sqlite", "mariadb", "postgres", "pg", "mssql", "database" ], "license": "MIT", "repository": { "type": "git", "url": "git://github.com/feathersjs-ecosystem/feathers-sequelize.git" }, "author": { "name": "Feathers contributors", "email": "hello@feathersjs.com", "url": "https://feathersjs.com" }, "contributors": [], "bugs": { "url": "https://github.com/feathersjs-ecosystem/feathers-sequelize/issues" }, "engines": { "node": ">= 14" }, "files": [ "CHANGELOG.md", "LICENSE", "README.md", "src/**", "lib/**" ], "scripts": { "prepublishOnly": "npm run compile", "compile": "shx rm -rf lib/ && tsc", "publish": "git push origin --tags && npm run changelog && git push origin", "changelog": "github_changelog_generator -u feathersjs-ecosystem -p feathers-sequelize && git add CHANGELOG.md && git commit -am \"Updating changelog\"", "update-dependencies": "ncu -u", "release:prerelease": "npm version prerelease --preid pre && npm publish --tag pre", "release:patch": "npm version patch && npm publish", "release:minor": "npm version minor && npm publish", "release:major": "npm version major && npm publish", "lint": "eslint src/**/*.ts test/**/*.ts --fix", "mocha": "mocha --require ts-node/register", "test": "npm run lint && npm run coverage", "coverage": "c8 npm run mocha" }, "directories": { "lib": "lib" }, "dependencies": { "@feathersjs/adapter-commons": "^5.0.11", "@feathersjs/commons": "^5.0.11", "@feathersjs/errors": "^5.0.11" }, "devDependencies": { "@feathersjs/adapter-tests": "^5.0.11", "@feathersjs/express": "^5.0.11", "@feathersjs/feathers": "^5.0.11", "@types/chai": "^4.3.9", "@types/mocha": "^10.0.3", "@types/node": "^20.8.10", "@types/pg": "^8.10.7", "@typescript-eslint/eslint-plugin": "^6.9.1", "@typescript-eslint/parser": "^6.9.1", "body-parser": "^1.20.2", "c8": "^8.0.1", "chai": "^4.3.10", "eslint": "^8.52.0", "mocha": "^10.2.0", "mysql2": "^3.6.2", "npm-check-updates": "^16.14.6", "pg": "^8.11.3", "pg-hstore": "^2.3.4", "sequelize": "^6.33.0", "shx": "^0.3.4", "sqlite3": "^5.1.6", "ts-node": "^10.9.1", "typescript": "^5.2.2" } }