typeorm-model-generator/package.json

48 lines
1.3 KiB
JSON
Raw Normal View History

2017-03-23 21:38:12 +00:00
{
"name": "typeorm-model-generator",
"version": "0.0.1",
"description": "Generates models for TypeORM from existing databases.",
"scripts": {
"tsc:w": "tsc -w",
2017-03-29 21:10:59 +00:00
"tsc": "tsc",
2017-03-23 21:38:12 +00:00
"typings-install": "typings install",
"setup": "npm install && npm run typings-install",
2017-05-03 17:47:01 +00:00
"start": "tsc && node ./src/index.js",
2017-05-03 20:36:56 +00:00
"test": "istanbul cover ./node_modules/mocha/bin/_mocha test/**/*.js --reporter lcovonly -- -R spec",
2017-05-03 20:14:08 +00:00
"posttest": "codecov"
2017-03-23 21:38:12 +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": {
"mssql": "^3.3.0",
"mustache": "^2.3.0",
"reflect-metadata": "^0.1.10",
"typeorm": "0.0.10",
2017-05-03 18:02:37 +00:00
"typescript": "^2.3.2",
"yargs": "^7.0.2"
2017-03-23 21:38:12 +00:00
},
"devDependencies": {
2017-05-03 17:12:25 +00:00
"@types/chai": "^3.5.2",
"@types/chai-as-promised": "0.0.30",
"@types/mocha": "^2.2.41",
"@types/node": "^7.0.10",
"@types/sinon": "^2.1.3",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
2017-05-03 20:05:49 +00:00
"codecov": "^2.1.0",
"istanbul": "^0.4.5",
2017-05-03 17:12:25 +00:00
"mocha": "^3.3.0",
"sinon": "^2.2.0",
"sinon-chai": "^2.10.0",
2017-03-23 21:38:12 +00:00
"typings": "^2.1.0"
}
}