-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.09 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
{
"name": "openapi-schema-ref-parser",
"version": "0.0.3",
"main": "dist/index.js",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/devflowinc/openapi-schema-ref-parser"
},
"homepage": "https://trieve.ai",
"license": "MIT",
"scripts": {
"lint": "eslint .",
"format": "prettier --write .",
"dev": "tsc && node --env-file .env dist/index.js",
"test": "jest",
"build": "tsc",
"publish": "npm publish dist --access public"
},
"keywords": [],
"author": "",
"description": "",
"devDependencies": {
"@eslint/js": "^9.15.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.0",
"@typescript-eslint/eslint-plugin": "^8.16.0",
"@typescript-eslint/parser": "^8.16.0",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.12.0",
"jest": "^29.7.0",
"prettier": "3.4.1",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2",
"typescript-eslint": "^8.16.0"
},
"dependencies": {
"@json-schema-tools/reference-resolver": "^1.2.6",
"eslint-plugin-jest": "^28.9.0"
}
}