UNPKG

feathers-sequelize

Version:
81 lines (80 loc) 2.47 kB
{ "name": "feathers-sequelize", "description": "A service adapter for Sequelize an SQL ORM", "version": "5.0.1", "homepage": "https://github.com/feathersjs-ecosystem/feathers-sequelize", "main": "lib/", "keywords": [ "feathers", "feathers-plugin", "sequel", "sequelize", "mysql", "sqlite", "mariadb", "postgres", "pg", "mssql" ], "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": ">= 6" }, "scripts": { "publish": "git push origin --tags && npm run changelog && git push origin", "changelog": "github_changelog_generator && 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", "lint": "semistandard --fix", "mocha": "mocha --opts mocha.opts --timeout 5000", "test": "npm run lint && npm run coverage", "test:postgres": "env DB=postgres npm run lint && npm run coverage:postgres", "test:mysql": "env DB=mysql npm run lint && npm run coverage:mysql", "coverage": "istanbul cover node_modules/mocha/bin/_mocha -- --opts mocha.opts", "coverage:postgres": "env DB=postgres istanbul cover node_modules/mocha/bin/_mocha -- --opts mocha.opts", "coverage:mysql": "env DB=mysql istanbul cover node_modules/mocha/bin/_mocha -- --opts mocha.opts" }, "semistandard": { "env": [ "mocha" ] }, "directories": { "lib": "lib" }, "dependencies": { "@feathersjs/adapter-commons": "^2.0.0", "@feathersjs/commons": "^4.0.0", "@feathersjs/errors": "^3.3.5" }, "devDependencies": { "@feathersjs/adapter-tests": "^1.0.1", "@feathersjs/express": "^1.3.0", "@feathersjs/feathers": "^3.3.0", "body-parser": "^1.18.3", "chai": "^4.2.0", "feathers-service-tests": "^0.10.2", "istanbul": "^1.1.0-alpha.1", "mocha": "^6.0.0", "mysql2": "^1.6.4", "pg": "^7.7.1", "pg-hstore": "^2.3.2", "semistandard": "^13.0.1", "sequelize": "^5.1.0", "sqlite3": "^4.0.4" } }