typeorm-model-generator/package.json

73 lines
2.2 KiB
JSON
Raw Normal View History

2017-03-23 21:38:12 +00:00
{
2018-02-04 22:38:43 +00:00
"name": "typeorm-model-generator",
2018-06-19 21:49:50 +00:00
"version": "0.2.18",
2018-02-04 22:38:43 +00:00
"description": "Generates models for TypeORM from existing databases.",
"bin": "bin/typeorm-model-generator",
"scripts": {
2018-03-18 19:06:46 +00:00
"setup": "npm install && typings install",
2018-02-04 22:38:43 +00:00
"start": " node ./dist/src/index.js",
2018-04-23 20:41:46 +00:00
"test": "gulp coverageRemap",
2018-03-18 19:06:46 +00:00
"compile": "gulp compile",
"precommit": "gulp pre-commit"
2018-02-04 22:38:43 +00:00
},
"repository": {
"type": "git",
"url": "git+https://github.com/Kononnable/typeorm-model-generator.git"
},
"author": "Kononnable",
"license": "MIT",
"bugs": {
"url": "https://github.com/Kononnable/typeorm-model-generator/issues"
},
"homepage": "https://github.com/Kononnable/typeorm-model-generator#readme",
"dependencies": {
2018-04-30 17:06:32 +00:00
"change-case": "^3.0.2",
2018-02-04 22:38:43 +00:00
"handlebars": "^4.0.11",
"mssql": "^4.0.4",
"mysql": "^2.15.0",
"pg": "^7.4.0",
"reflect-metadata": "^0.1.10",
2018-04-30 17:06:32 +00:00
"typeorm": "^0.2.4",
"typescript": "^2.8.3",
"yargs": "^11.1.0",
2018-04-30 20:47:40 +00:00
"sqlite3": "^4.0.0",
2018-02-04 22:38:43 +00:00
"yn": "^2.0.0"
},
"devDependencies": {
2018-04-30 17:06:32 +00:00
"@types/chai": "^4.1.3",
2018-02-04 22:38:43 +00:00
"@types/chai-as-promised": "7.1.0",
"@types/chai-subset": "^1.3.1",
2018-04-30 17:06:32 +00:00
"@types/fs-extra": "^5.0.2",
"@types/handlebars": "^4.0.37",
"@types/mocha": "^5.2.0",
"@types/mssql": "^4.0.7",
"@types/mysql": "2.15.5",
2018-04-30 17:06:32 +00:00
"@types/node": "^10.0.1",
2018-02-04 22:38:43 +00:00
"@types/oracledb": "^1.11.34",
2018-04-30 17:06:32 +00:00
"@types/pg": "^7.4.8",
"@types/sinon": "^5.0.0",
2018-02-04 22:38:43 +00:00
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chai-subset": "^1.6.0",
2018-04-30 17:06:32 +00:00
"codecov": "^3.0.1",
"dotenv": "^6.0.0",
"fs-extra": "^6.0.0",
2018-03-18 19:06:46 +00:00
"gulp": "^3.9.1",
"gulp-clean": "^0.4.0",
"gulp-istanbul": "^1.1.3",
"gulp-mocha": "^6.0.0",
2018-03-18 19:06:46 +00:00
"gulp-shell": "^0.6.5",
"gulp-sourcemaps": "^2.6.4",
2018-04-30 17:06:32 +00:00
"gulp-typescript": "^4.0.2",
2018-02-04 22:38:43 +00:00
"husky": "^0.14.3",
"istanbul": "^0.4.5",
2018-06-18 18:55:12 +00:00
"lint-staged": "^7.2.0",
2018-04-30 17:06:32 +00:00
"mocha": "^5.1.1",
"prettier": "^1.12.1",
"remap-istanbul": "^0.11.1",
"sinon": "^6.0.0",
"sinon-chai": "^3.0.0",
2018-02-04 22:38:43 +00:00
"typings": "^2.1.1"
}
}