forked from typegoose/typegoose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.27 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
{
"name": "@typegoose/typegoose",
"version": "7.4.1",
"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",
"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.10.4",
"@types/mongoose": "^5.7.36"
},
"devDependencies": {
"@types/jest": "^26.0.14",
"@types/lodash": "^4.14.161",
"@types/mongoose": "^5.7.36",
"@types/node": "^10.17.16",
"@types/semver": "^7.3.4",
"coveralls": "^3.1.0",
"jest": "^26.4.2",
"mongodb-memory-server": "^6.7.6",
"mongoose": "^5.10.4",
"mongoose-findorcreate": "^3.0.0",
"prettier": "^2.1.2",
"rimraf": "^3.0.2",
"ts-jest": "^26.3.0",
"tslint": "^6.1.3",
"tslint-consistent-codestyle": "^1.16.0",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^3.9.7"
},
"dependencies": {
"lodash": "^4.17.20",
"loglevel": "^1.7.0",
"reflect-metadata": "^0.1.13",
"semver": "^7.3.2",
"tslib": "^2.0.1"
},
"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/"
}