UNPKG

sequelize-hierarchy

Version:
71 lines (70 loc) 2.33 kB
{ "name": "sequelize-hierarchy", "version": "2.0.4", "description": "Nested hierarchies for Sequelize", "main": "index.js", "author": { "name": "Overlook Motel" }, "repository": { "type": "git", "url": "https://github.com/overlookmotel/sequelize-hierarchy.git" }, "bugs": { "url": "https://github.com/overlookmotel/sequelize-hierarchy/issues" }, "dependencies": { "is-generator": "^1.0.3", "lodash": "^4.17.11", "semver-select": "^1.1.0" }, "devDependencies": { "@overlookmotel/eslint-config": "^2.1.2", "@overlookmotel/eslint-config-tests": "^1.0.4", "chai": "^4.2.0", "chai-as-promised": "^7.1.1", "coveralls": "^3.0.3", "cross-env": "^5.2.0", "eslint": "^5.16.0", "eslint-config-airbnb-base": "^13.1.0", "eslint-plugin-chai-friendly": "^0.4.1", "eslint-plugin-eslint-comments": "^3.1.1", "eslint-plugin-import": "^2.17.2", "istanbul": "^0.4.5", "mocha": "^6.1.4", "mysql2": "^1.6.5", "pg": "^7.10.0", "pg-hstore": "^2.3.2", "pg-native": "^3.0.0", "sequelize": "^5.7.5", "sqlite3": "^4.0.6", "tedious": "^6.1.1" }, "keywords": [ "sequelize", "sequelize-plugin", "hierarchy", "nested", "tree" ], "scripts": { "test": "npm run lint && npm run test-main", "lint": "eslint '*.js' '.*.js' '**/*.js' '**/.*.js'", "lint-fix": "eslint '*.js' '.*.js' '**/*.js' '**/.*.js' --fix", "test-mysql": "cross-env DIALECT=mysql npm run test-main", "test-postgres": "cross-env DIALECT=postgres npm run test-main", "test-postgres-native": "cross-env DIALECT=postgres-native npm run test-main", "test-sqlite": "cross-env DIALECT=sqlite npm run test-main", "test-mssql": "cross-env DIALECT=mssql npm run test-main", "test-main": "mocha --check-leaks --colors -t 30000 -R spec \"test/**/*.test.js\"", "cover": "npm run cover-main && rm -rf coverage", "coveralls": "npm run cover-main && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage", "cover-main": "cross-env COVERAGE=true istanbul cover _mocha --report lcovonly -- -t 30000 -R spec \"test/**/*.test.js\"", "ci": "if [ $COVERAGE ]; then npm run coveralls; else npm test; fi" }, "engines": { "node": ">=8" }, "readmeFilename": "README.md", "license": "MIT" }