-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.52 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
{
"name": "mongoose-typescript",
"version": "3.3.0",
"description": "",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "rm -rf lib && tsc && cp -r src/model-helper lib",
"doc": "typedoc --out docs src && touch docs/.nojekyll",
"prepublishOnly": "npm run build",
"test": "mocha --require ts-node/register/transpile-only test/index.ts",
"lint": "eslint --ext .js,.ts ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/bangbang93/mongoose-typescript.git"
},
"author": "bangbang93 <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bangbang93/mongoose-typescript/issues"
},
"engines": {
"node": ">=18.0.0"
},
"homepage": "https://github.com/bangbang93/mongoose-typescript#readme",
"keywords": [
"mongoose",
"typescript",
"decrator"
],
"peerDependencies": {
"mongoose": ">=6.2.1 <9.0.0"
},
"devDependencies": {
"@bangbang93/eslint-config-recommended": "^0.0.3",
"@tsconfig/node18": "^1.0.3",
"@types/lodash": "^4.14.195",
"@types/mocha": "^5.2.5",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"eslint": "^8.42.0",
"mocha": "^9.1.4",
"should": "^13.2.3",
"ts-node": "^8.10.2",
"typedoc": "^0.24.8",
"typescript": "^4.9.5"
},
"dependencies": {
"@sindresorhus/is": "^4.2.0",
"lodash": "^4.17.21",
"reflect-metadata": "^0.1.13",
"type-fest": "^2.11.1"
},
"files": [
"lib/**"
]
}