UNPKG

sequelize-values

Version:
72 lines (71 loc) 2 kB
{ "name": "sequelize-values", "version": "1.1.0", "description": "Easily get raw data from Sequelize instances", "main": "./lib/", "author": { "name": "Overlook Motel" }, "repository": { "type": "git", "url": "https://github.com/overlookmotel/sequelize-values.git" }, "bugs": { "url": "https://github.com/overlookmotel/sequelize-values/issues" }, "dependencies": { "lodash": "^4.16.1", "semver-select": "^1.1.0" }, "devDependencies": { "mocha": "^3.0.2", "chai": "^3.5.0", "chai-as-promised": "^5.3.0", "sequelize": "4.0.0-2", "mysql": "~2.10.1", "mysql2": "^1.0.0", "sqlite3": "^3.1.4", "pg": "^6.0.4", "pg-hstore": "^2.3.1", "pg-native": "^1.8.0", "tedious": "^1.13.2", "jshint": "^2.9.3", "istanbul": "^0.4.5", "coveralls": "^2.11.14" }, "keywords": [ "sequelize", "sequelize-plugin", "values", "get", "raw", "plain", "deep", "recurse", "recursive", "nested", "dedup", "duplicate", "duplicates", "redundant" ], "scripts": { "test": "npm run jshint && npm run test-main", "jshint": "jshint lib test", "test-mysql": "DIALECT=mysql npm run test-main", "test-postgres": "DIALECT=postgres npm run test-main", "test-postgres-native": "DIALECT=postgres-native npm run test-main", "test-sqlite": "DIALECT=sqlite npm run test-main", "test-mssql": "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": "COVERAGE=true istanbul cover _mocha --report lcovonly -- -t 30000 -R spec 'test/**/*.test.js'", "travis": "if [ $COVERAGE ]; then npm run coveralls; else npm test; fi" }, "engines": { "node": ">=4" }, "readmeFilename": "README.md", "license": "MIT" }