forked from szokodiakos/typegoose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.44 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "typegoose",
"version": "5.6.0",
"description": "Define Mongoose models using TypeScript classes.",
"main": "lib/typegoose.js",
"files": [
"lib/*.js",
"lib/*.d.ts"
],
"scripts": {
"start": "npm run build && node ./lib/typegoose.js",
"build": "rimraf lib && tsc",
"lint": "tslint --project tsconfig.json",
"test": "npm run lint && nyc npm run mocha",
"mocha": "npm run build && mocha ./lib --recursive --exit",
"coverage": "nyc report --reporter=text-lcov | 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",
"peerDependencies": {
"mongoose": "^5.4.15"
},
"devDependencies": {
"@types/chai": "4.1.3",
"@types/dotenv": "4.0.3",
"@types/mocha": "5.2.0",
"@types/mongoose": "5.0.10",
"@types/node": "8.10.0",
"chai": "4.1.2",
"coveralls": "^3.0.3",
"dotenv": "5.0.1",
"mocha": "5.2.0",
"mocha-lcov-reporter": "^1.3.0",
"mongoose": "^5.4.15",
"mongoose-findorcreate": "3.0.0",
"nyc": "13.3.0",
"prettier": "1.16.4",
"prettier-tslint": "0.4.2",
"rimraf": "2.6.2",
"tslint": "5.13.0",
"tslint-config-prettier": "1.18.0",
"typescript": "2.9.2"
},
"dependencies": {
"reflect-metadata": "^0.1.13"
}
}