-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.04 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
{
"name": "json2mongoose",
"version": "0.4.4",
"description": "genarate mongoose ts files from jsonSchema",
"author": "justin26l",
"license": "MIT",
"main": "./dist/src/index.js",
"bin": {
"json2mongoose": "./dist/src/cli.js"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "ts-node src/cli.ts ./jsonSchema ./output",
"test": "node dist/cli.js ./jsonSchema ./output",
"lint": "eslint ./src --ext .ts --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Justin26l/json2mongoose.git"
},
"keywords": [
"jsonschema",
"mongoose"
],
"dependencies": {
"@types/mongoose": "^5.11.97",
"json-schema-to-typescript": "^13.1.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"eslint": "^8.56.0",
"eslint-config-standard-with-typescript": "^43.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"typescript": "^5.3.3"
}
}