-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.22 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
{
"name": "mongoose-decorators-ts",
"version": "1.3.0",
"description": "TypeScript decorators for Mongoose models.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc -p .",
"lint": "tslint --project tsconfig.json --type-check",
"prepublishOnly": "tsc -p .",
"test": "tsc -p . && mocha dist/test/"
},
"keywords": [
"decorators",
"mongoose",
"typescript"
],
"author": "GradeCam LLC",
"license": "MIT",
"devDependencies": {
"@alttypes/mongoose": "~1.1.1",
"@types/chai": "^3.4.34",
"@types/chai-as-promised": "0.0.29",
"@types/events": "^3.0.0",
"@types/mocha": "^2.2.37",
"@types/node": ">= 10.0.0",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"mocha": "^7.1.0",
"mongodb": "~ 4.1.0",
"mongodb-memory-server": "^7.3.6",
"mongoose": ">= 5.12.15",
"reflect-metadata": ">= 0.1.9",
"tslint": "^4.3.1",
"typescript": "^4.3.5"
},
"peerDependencies": {
"@alttypes/mongoose": ">= 0.9.6",
"@types/node": ">= 10.0.0",
"mongoose": ">= 4.7.7",
"reflect-metadata": ">= 0.1.9"
},
"repository": "gradecam/mongoose-decorators-ts",
"engines": {
"node": ">= 6"
},
"files": [
"dist"
]
}