tsgoose
Version:
TypeScript decorators for Mongoose
46 lines (45 loc) • 1.18 kB
JSON
{
"name": "tsgoose",
"version": "0.0.4",
"description": "TypeScript decorators for Mongoose",
"main": "index.js",
"directories": {
"dist": "dist"
},
"types": "index.d.ts",
"typings": "index.d.ts",
"scripts": {
"clean": "rimraf dist",
"lint": "tslint --config tslint.json --project tsconfig.json --format stylish",
"tsc": "tsc",
"build": "npm run clean && npm run lint && npm run tsc",
"build.full": "npm run build && cp package.json dist/package.json && cp README.md dist/README.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/troyanskiy/tsgoose.git"
},
"keywords": [
"tsgoose",
"typescript-mongoose",
"mongoose",
"ts-mongoose"
],
"author": "Roman Rosluk <roma@redbox.by>",
"license": "MIT",
"bugs": {
"url": "https://github.com/troyanskiy/tsgoose/issues"
},
"homepage": "https://github.com/troyanskiy/tsgoose#readme",
"devDependencies": {
"@types/node": "^9.4.6",
"rimraf": "^2.6.2",
"tslint": "^5.9.1",
"typescript": "^2.7.2",
"@types/mongoose": "^5.0.6",
"mongoose": "^5.0.9"
},
"dependencies": {
"reflect-metadata": "^0.1.12"
}
}