feathers-sequelize
Version:
A service adapter for Sequelize an SQL ORM
92 lines (91 loc) • 2.4 kB
JSON
{
"name": "feathers-sequelize",
"description": "A service adapter for Sequelize an SQL ORM",
"version": "6.3.6",
"homepage": "https://github.com/feathersjs-ecosystem/feathers-sequelize",
"main": "lib/",
"types": "types",
"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": ">= 12"
},
"files": [
"CHANGELOG.md",
"LICENSE",
"README.md",
"lib/**",
"hooks/**",
"types/**",
"*.d.ts",
"*.js"
],
"scripts": {
"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: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 --timeout 10000 --recursive test/ --exit",
"dtslint": "dtslint types",
"test": "npm run lint && npm run dtslint && npm run coverage",
"coverage": "nyc npm run mocha"
},
"semistandard": {
"env": [
"mocha"
]
},
"directories": {
"lib": "lib"
},
"dependencies": {
"@feathersjs/adapter-commons": "^4.5.15",
"@feathersjs/commons": "^4.5.15",
"@feathersjs/errors": "^4.5.15"
},
"devDependencies": {
"@feathersjs/adapter-tests": "^4.5.15",
"@feathersjs/express": "^4.5.15",
"@feathersjs/feathers": "^4.5.15",
"body-parser": "^1.20.0",
"chai": "^4.3.6",
"dtslint": "^4.2.1",
"mocha": "^10.0.0",
"mysql2": "^2.3.3",
"npm-check-updates": "^16.3.4",
"nyc": "^15.1.0",
"pg": "^8.8.0",
"pg-hstore": "^2.3.4",
"semistandard": "^16.0.1",
"sequelize": "^6.23.2",
"sqlite3": "^5.1.1",
"typescript": "^4.8.4"
}
}