forked from typegoose/typegoose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 2.84 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
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@typegoose/typegoose",
"version": "10.1.1",
"description": "Define Mongoose models using TypeScript classes",
"main": "lib/typegoose.js",
"types": "lib/typegoose.d.ts",
"engines": {
"node": ">=14.17.0"
},
"files": [
"lib/**/*.js",
"lib/**/*.d.ts"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"build:tests": "tsc -p tsconfig.buildTests.json",
"lint": "eslint -c ./.eslintrc.js \"./**/*.{js,ts}\"",
"test": "jest",
"test:watch": "jest --watchAll",
"test:coverage": "jest --collectCoverage",
"test:watchCoverage": "jest --collectCoverage --watchAll",
"test:types": "jest -c jest.config.tsd.json",
"watch": "tsc -w -p tsconfig.buildTests.json",
"clean": "rimraf lib .tsbuildinfo coverage doc build",
"prepare": "husky install",
"website": "yarn --cwd website/ run start"
},
"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": "~6.9.0"
},
"devDependencies": {
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@deepkit/core": "1.0.1-alpha.58",
"@deepkit/type": "1.0.1-alpha.58",
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.7",
"@semantic-release/npm": "^9.0.2",
"@semantic-release/release-notes-generator": "^10.0.3",
"@tsd/typescript": "~4.9.4",
"@types/jest": "^29.4.0",
"@types/lodash": "^4.14.191",
"@types/node": "~14.14.31",
"@types/semver": "^7.3.13",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"class-transformer": "0.5.1",
"commitlint": "^17.4.2",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"jest": "^29.4.1",
"jest-runner-tsd": "^4.0.0",
"lint-staged": "^13.1.0",
"mongodb-memory-server": "^8.11.4",
"mongoose": "~6.9.0",
"mongoose-findorcreate": "3.0.0",
"prettier": "^2.8.3",
"rimraf": "^3.0.2",
"semantic-release": "^19.0.5",
"ts-jest": "^29.0.5",
"typescript": "~4.9.4"
},
"dependencies": {
"lodash": "^4.17.20",
"loglevel": "^1.8.1",
"reflect-metadata": "^0.1.13",
"semver": "^7.3.8",
"tslib": "^2.5.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/"
}