UNPKG

typeorm-versions

Version:
61 lines (60 loc) 1.43 kB
{ "name": "typeorm-versions", "version": "0.1.0", "description": "Entity versioning for TypeORM", "license": "MIT", "readmeFilename": "README.md", "author": { "name": "Frane Bandov", "email": "frane@offbyte.com" }, "main": "dist/index.js", "types": "dist/index.d.ts", "repository": { "type": "git", "url": "https://github.com/frane/typeorm-versions.git" }, "bugs": { "url": "https://github.com/frane/typeorm-versions/issues" }, "files": [ "dist/**/*.js", "dist/**/*.ts", "README.md" ], "lint-staged": { "*.ts": [ "tslint --fix", "git add" ] }, "scripts": { "test": "mocha -r ts-node/register --file ./test/utils/test-setup.ts --bail --recursive --timeout 60000 ./test/**/*test.ts", "clean": "rimraf ./dist", "prebuild": "npm run clean", "build": "tsc", "lint": "tslint -p .", "prepublish": "npm run build" }, "dependencies": { "typeorm": "^0.2.25" }, "devDependencies": { "@types/chai": "^4.2.11", "@types/chai-as-promised": "^7.1.2", "@types/mocha": "^7.0.2", "@types/node": "^13.11.1", "chai": "^4.2.0", "chai-as-promised": "^7.1.1", "mocha": "^7.1.1", "mongodb": "^3.5.6", "mssql": "^6.2.0", "mysql": "^2.18.1", "pg": "^8.0.2", "rimraf": "^3.0.2", "sqlite3": "^4.2.0", "ts-node": "^8.8.2", "tslint": "^6.1.1", "typescript": "^3.8.3" } }