UNPKG

feathers-cassandra

Version:

Feathers service adapter for Cassandra DB based on Express-Cassandra ORM and CassanKnex query builder

135 lines (134 loc) 3.6 kB
{ "name": "feathers-cassandra", "description": "Feathers service adapter for Cassandra DB based on Express-Cassandra ORM and CassanKnex query builder", "version": "3.5.9", "homepage": "https://github.com/feathersjs-ecosystem/feathers-cassandra", "keywords": [ "feathers", "feathersjs", "cassandra", "express-cassandra", "cassanknex", "knex", "database", "db", "orm", "model" ], "license": [ { "type": "MIT", "url": "https://github.com/feathersjs-ecosystem/feathers-cassandra/blob/master/LICENSE" } ], "repository": { "type": "git", "url": "git://github.com/feathersjs-ecosystem/feathers-cassandra.git" }, "author": { "name": "Feathers contributors", "email": "hello@feathersjs.com", "url": "https://feathersjs.com" }, "bugs": { "url": "https://github.com/feathersjs-ecosystem/feathers-cassandra/issues" }, "engines": { "node": ">= 14" }, "main": "lib/", "types": "types", "files": [ "lib", "types" ], "scripts": { "prepare": "npm run compile", "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", "compile": "rimraf lib/ && babel -d lib/ src/", "watch": "babel --watch -d lib/ src/", "lint": "semistandard --fix src/**/*.js test/**/*.js --config", "dtslint": "dtslint --localTs node_modules/typescript/lib types", "mocha": "nyc mocha", "coverage": "nyc report --reporter=text-lcov | coveralls", "test": "npm run compile && npm run lint && npm run dtslint && npm run mocha", "example": "npm run compile && babel-node example/app" }, "directories": { "lib": "lib" }, "dependencies": { "@feathersjs/adapter-commons": "^4.5.16", "@feathersjs/errors": "^4.5.16", "arr-flatten": "^1.1.0", "lodash.isequal": "^4.5.0" }, "devDependencies": { "@babel/cli": "^7.21.0", "@babel/core": "^7.21.0", "@babel/node": "^7.20.7", "@babel/preset-env": "^7.20.2", "@babel/register": "^7.21.0", "@feathersjs/adapter-tests": "^4.5.16", "@feathersjs/express": "^4.5.16", "@feathersjs/feathers": "^4.5.16", "await-sleep": "0.0.1", "babel-eslint": "^10.1.0", "babel-plugin-add-module-exports": "^1.0.4", "babel-plugin-transform-class-properties": "^6.24.1", "babel-plugin-transform-object-assign": "^6.22.0", "body-parser": "^1.20.2", "cassandra-driver": "4.6.4", "cassanknex": "^2.0.1", "chai": "^4.3.7", "coveralls": "^3.1.1", "dtslint": "^3.4.2", "express-cassandra": "^2.8.0", "feathers-service-tests-cassandra": "^1.0.1", "mocha": "^10.2.0", "nyc": "^15.1.0", "rimraf": "^4.3.0", "semistandard": "^16.0.1", "typescript": "^4.2.3" }, "peerDependencies": { "express-cassandra": "*" }, "babel": { "plugins": [ "transform-object-assign", "transform-class-properties", "add-module-exports" ], "presets": [ [ "@babel/preset-env", { "targets": { "node": "14" } } ] ] }, "nyc": { "exclude": [ "test/**", "lib/**", "example/**" ] }, "semistandard": { "parser": "babel-eslint", "env": [ "mocha" ], "ignore": [ "/lib" ] } }