-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.33 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
{
"name": "@trojs/openapi-model",
"description": "OpenAPI Model",
"version": "1.0.0",
"author": {
"name": "Pieter Wigboldus",
"url": "https://trojs.org/"
},
"license": "MIT",
"scripts": {
"lint": "eslint",
"lint:report": "eslint src/*.js -f json -o report.json",
"lint:fix": "eslint --fix",
"lint:rules": "eslint --print-config file.js > eslintconfig.json",
"test": "node --test src/*.test.js",
"test:watch": "node --watch --test src/*.test.js",
"test:coverage": "node --test --experimental-test-coverage --test-reporter=lcov --test-reporter-destination=lcov.info src/*.test.js",
"cpd": "node_modules/jscpd/bin/jscpd src",
"vulnerabilities": "npm audit --omit=dev"
},
"type": "module",
"files": [
"src/model.js",
"src/schema.d.ts"
],
"main": "src/model.js",
"types": "src/schema.d.ts",
"devDependencies": {
"@eslint/js": "^9.15.0",
"@stylistic/eslint-plugin": "^2.11.0",
"@stylistic/eslint-plugin-js": "^2.11.0",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsdoc": "^50.5.0",
"eslint-plugin-n": "^17.14.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^7.1.0",
"eslint-plugin-sonarjs": "^2.0.4",
"globals": "^15.12.0",
"jscpd": "^4.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/hckrnews/openapi-model"
},
"engines": {
"node": ">= 20"
},
"keywords": [
"openapi",
"model",
"entity",
"schema",
"specification",
"api",
"ajv"
],
"dependencies": {
"@trojs/deep-merge": "^1.0.0",
"ajv": "^8.12.0",
"ajv-formats": "^3.0.0"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/w3nl"
},
"overrides": {
"semver": "^7.5.3",
"xml2js": "^0.6.0",
"eslint-plugin-sonarjs": {
"eslint": "^9.15.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/utils": "^8.0.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-react-hooks": "^5.0.0"
}
}
}