{
	"name": "ph-typegoose",
	"version": "4.0.2",
	"description": "Define Mongoose models using TypeScript classes.",
	"main": "lib/typegoose.js",
	"scripts": {
		"start": "npm run build && node ./lib/typegoose.js",
		"build": "rimraf lib && tsc",
		"lint": "tslint --project tsconfig.json",
		"test": "npm run lint && npm run cover",
		"mocha": "npm run build && mocha ./lib --recursive",
		"cover": "npm run build && istanbul cover _mocha -- lib --recursive -R spec",
		"coveralls": "cat ./coverage/lcov.info | coveralls"
	},
	"repository": {
		"type": "git",
		"url": "https://github.com/szokodiakos/typegoose.git"
	},
	"types": "lib/typegoose.d.ts",
	"typings": "lib/typegoose.d.ts",
	"author": "Akos Szokodi <akos@codingsans.com> (http://codingsans.com)",
	"license": "MIT",
	"dependencies": {
		"@pqian/ph-mongoose": "5.0.2",
		"lodash": "4.17.4",
		"mongoose": "5.0.7",
		"reflect-metadata": "0.1.8",
		"typescript": "2.6.2"
	},
	"devDependencies": {
		"@types/chai": "3.4.35",
		"@types/dotenv": "4.0.0",
		"@types/lodash": "4.14.55 <4.14.74",
		"@types/mocha": "2.2.33",
		"@types/node": "6.0.52",
		"chai": "3.5.0",
		"coveralls": "2.13.1",
		"dotenv": "4.0.0",
		"istanbul": "0.4.5",
		"mocha": "3.2.0",
		"mongoose-findorcreate": "3.0.0",
		"rimraf": "2.6.1",
		"tslint": "5.2.0"
	}
}