UNPKG

sequelize-auto

Version:

Automatically generate bare sequelize models from your database.

99 lines (98 loc) 2.73 kB
{ "name": "sequelize-auto", "version": "0.8.8", "publishConfig": { "tag": "latest" }, "description": "Automatically generate bare sequelize models from your database.", "main": "index.js", "types": "types", "keywords": [ "mysql", "mssql", "sqlite", "postgres", "sequelize", "sequelizejs", "generator", "mapper", "typescript" ], "files": [ "*.js", "lib/**/*.js", "types/**/*.ts", "*.md" ], "bin": { "sequelize-auto": "bin/sequelize-auto" }, "repository": { "type": "git", "url": "https://github.com/sequelize/sequelize-auto.git" }, "bugs": { "url": "https://github.com/sequelize/sequelize-auto/issues" }, "nyc": { "exclude": [ "**/test/*" ] }, "scripts": { "tsc": "tsc", "clean": "rimraf lib && rimraf types && rimraf **/models && rimraf *.tgz", "build": "npm run clean && tsc", "prepack": "crlf --set=LF bin/sequelize-auto", "test": "npm run test-mssql && npm run test-mysql && npm run test-postgres && npm run test-sqlite", "test-postgres": "cross-env DEBUG='sequelize-auto:*' DIALECT=postgres nyc mocha", "test-postgres-native": "cross-env DEBUG='sequelize-auto:*' DIALECT=postgres-native nyc mocha", "test-mysql": "cross-env DEBUG='sequelize-auto:*' DIALECT=mysql nyc mocha", "test-sqlite": "cross-env DEBUG='sequelize-auto:*' DIALECT=sqlite nyc mocha", "test-mssql": "cross-env DEBUG='sequelize-auto:*' DIALECT=mssql nyc mocha", "coveralls": "nyc report --reporter=text-lcov | coveralls" }, "engines": { "node": ">= 10" }, "author": "Steve Schmitt (https://github.com/steveschmitt)", "contributors": [ "Daniel Durante <me@danieldurante.com>", "Yuping Zuo (https://github.com/zypA13510)" ], "license": "MIT", "dependencies": { "lodash": "^4.17.21", "mkdirp": "^1.0.4", "reserved-words": "^0.1.2", "yargs": "^16.2.0" }, "peerDependencies": { "sequelize": ">3.30.0" }, "devDependencies": { "@types/chai": "^4.2.17", "@types/lodash": "^4.14.168", "@types/mocha": "^8.2.2", "@types/reserved-words": "0.1.0", "chai": "^4.3.4", "coveralls": "^3.1.0", "crlf": "^1.1.1", "cross-env": "^7.0.3", "debug": "^4.3.1", "dotenv": "^8.2.0", "eslint": "^7.23.0", "lcov-result-merger": "^3.1.0", "mocha": "^8.3.2", "mysql": "^2.18.1", "mysql2": "^2.2.5", "nyc": "^15.1.0", "pg": "^8.5.1", "pg-hstore": "^2.3.3", "rimraf": "^3.0.2", "sequelize": "^6.11", "sqlite3": "5.0.2", "tedious": "^11.0.6", "typescript": "^4.2.3" } }