-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
42 lines (42 loc) · 1 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
{
"name": "ts-mongoose",
"version": "0.0.20",
"description": "",
"main": "index.js",
"module": "es/index.js",
"jsnext:main": "es/index.js",
"types": "index.d.ts",
"scripts": {
"jest": "jest",
"tsc": "tsc",
"test": "yarn run tsc --noEmit && yarn run jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BetterCallSky/ts-mongoose.git"
},
"author": "Łukasz Sentkiewicz",
"contributors": [
"Łukasz Gosławski"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/BetterCallSky/ts-mongoose/issues"
},
"homepage": "https://github.com/BetterCallSky/ts-mongoose#readme",
"devDependencies": {
"@types/mongoose": "^5.5.21",
"@types/node": "^12.7.12",
"mongoose": "^5.7.5",
"@types/jest": "^24.0.19",
"jest": "^24.9.0",
"prettier": "^1.18.2",
"ts-jest": "^24.1.0",
"typescript": "^3.6.3"
},
"dependencies": {},
"peerDependencies": {
"@types/mongoose": "^5.5.21",
"mongoose": "^5.7.5"
}
}