-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.46 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "@typegoose/typegoose",
"version": "7.1.3",
"description": "Define Mongoose models using TypeScript classes",
"main": "lib/typegoose.js",
"types": "lib/typegoose.d.ts",
"engines": {
"node": ">=10.15.0"
},
"files": [
"lib/**/*.js",
"lib/**/*.d.ts"
],
"scripts": {
"start": "npm run build && node ./lib/typegoose.js",
"build": "npm run lint && tsc -p tsconfig.build.json",
"buildtests": "npm run lint && tsc -p tsconfig.json",
"lint": "tslint --project tsconfig.json",
"test": "jest",
"test:watch": "jest --watchAll",
"test:coverage": "jest --collectCoverage",
"test:watchCoverage": "jest --collectCoverage --watchAll",
"watch": "tsc -w -p tsconfig.json",
"coverage": "cat ./coverage/lcov.info | coveralls",
"clean": "rimraf lib .tsbuildinfo coverage doc build",
"doc": "typedoc --out ./doc ./src --mode modules --exclude \"**/internal/*\"",
"doc:all": "typedoc --out ./doc ./src --mode modules",
"prepare": "npm run build",
"version:patch": "npm version patch -m 'Release %s'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/typegoose/typegoose.git"
},
"author": "Akos Szokodi <[email protected]> (http://codingsans.com)",
"contributors": [
"Ben305",
"hasezoey <[email protected]>"
],
"license": "MIT",
"peerDependencies": {
"mongoose": "^5.9.14",
"@types/mongoose": "^5.7.20"
},
"devDependencies": {
"@types/jest": "^25.2.2",
"@types/lodash": "^4.14.151",
"@types/mongoose": "^5.7.20",
"@types/node": "^10.17.16",
"@types/semver": "^7.2.0",
"coveralls": "^3.1.0",
"jest": "^26.0.1",
"mongodb-memory-server": "^6.6.0",
"mongoose": "^5.9.14",
"mongoose-findorcreate": "^3.0.0",
"prettier": "^2.0.5",
"rimraf": "3.0.2",
"ts-jest": "^26.0.0",
"tslint": "^5.20.1",
"tslint-consistent-codestyle": "^1.16.0",
"tslint-eslint-rules": "*5.4.0",
"typedoc": "0.17.7",
"typescript": "3.9.2"
},
"dependencies": {
"lodash": "^4.17.15",
"loglevel": "^1.6.8",
"reflect-metadata": "^0.1.13",
"semver": "^7.3.2",
"tslib": "^2.0.0"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"typegoose",
"mongoose",
"orm",
"mongodb",
"class",
"model",
"schema",
"odm"
],
"bugs": {
"url": "https://github.com/typegoose/typegoose/issues"
},
"homepage": "https://typegoose.github.io/typegoose/",
"sideEffects": false
}