-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.15 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
54
55
{
"name": "mongoose-ts-ua",
"version": "2.0.2",
"description": "mongoose with typescript",
"main": "dest/lib/index.js",
"files": [
"dest/lib",
"test"
],
"scripts": {
"build": "rm -rf ./dest && tsc",
"test": "nyc mocha"
},
"author": "",
"license": "ISC",
"dependencies": {
"reflect-metadata": ">=0.1.12",
"mongoose": "^7.0.0"
},
"devDependencies": {
"@types/mongodb": "*",
"@types/mocha": "^5.2.7",
"@types/node": "^12.12.21",
"chai": "^4.2.0",
"mocha": "^6.2.2",
"ts-node": "^8.5.4",
"typescript": "^5.2.2"
},
"repository": {
"type": "git",
"url": "https://github.com/aoi-umi/mongoose-ts.git"
},
"keywords": [
"mongoose",
"typescript",
"gridfs"
],
"nyc": {
"include": [
"src/lib/*.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"text",
"html"
],
"instrument": true,
"all": true
}
}