forked from francescov1/mongoose-tsgen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.02 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
{
"name": "mongoose-tsgen",
"description": "A Typescript interface generator for Mongoose that works out of the box.",
"version": "9.2.13",
"author": "Francesco Virga @francescov1",
"bin": {
"mtgen": "./bin/run"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"bugs": "https://github.com/francescov1/mongoose-tsgen/issues",
"dependencies": {
"@oclif/core": "^2.1.4",
"glob": "^7.1.6",
"lodash": "^4.17.20",
"mkdirp": "^1.0.4",
"prettier": "^2.5.1",
"strip-json-comments": "^3.1.1",
"ts-morph": "^19.0.0",
"ts-node": "^9.1.1",
"tsconfig-paths": "^3.9.0",
"tslib": "^1.13.0"
},
"peerDependencies": {
"mongoose": ">= 5.11.19",
"typescript": ">= 4"
},
"devDependencies": {
"@types/eslint": "^7.2.4",
"@types/flat": "^5.0.1",
"@types/jest": "^26.0.14",
"@types/lodash": "^4.14.167",
"@types/mkdirp": "^1.0.1",
"@types/node": "^10.17.35",
"eslint": "^7.13.0",
"eslint-config-oclif": "^4.0.0",
"eslint-config-oclif-typescript": "^1.0.3",
"globby": "^10.0.2",
"husky": "^4.3.0",
"jest": "^26.4.2",
"lint-staged": "^10.5.1",
"mongoose": "^6.1.6",
"oclif": "^3.6.3",
"rimraf": "^3.0.2",
"ts-jest": "^26.4.1",
"typescript": "^4.1.3"
},
"engines": {
"node": ">=9.0.0"
},
"files": [
"/bin",
"/lib"
],
"homepage": "https://github.com/francescov1/mongoose-tsgen",
"keywords": [
"mongoose",
"generator",
"typescript",
"interfaces",
"ts",
"mtgen"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"bin": "mtgen"
},
"repository": "francescov1/mongoose-tsgen",
"scripts": {
"posttest": "eslint . --ext .ts --config .eslintrc",
"prepack": "npm test && rm -rf lib && tsc -b",
"test": "npx jest",
"build": "npx tsc",
"readme": "./node_modules/@oclif/dev-cli/bin/run readme"
},
"types": "lib/index.d.ts",
"lint-staged": {
"*.{js,ts}": [
"npx prettier --write",
"eslint --cache --fix"
]
}
}