-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.94 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.94 KB
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
{
"name": "@trojs/openapi-model",
"description": "OpenAPI Model",
"version": "1.1.8",
"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 --experimental-test-coverage --test-reporter=spec --test-reporter=lcov --test-reporter-destination=stdout --test-reporter-destination=./coverage/lcov.info",
"test:watch": "node --watch --test --experimental-test-coverage --test-reporter=spec --test-reporter=lcov --test-reporter-destination=stdout --test-reporter-destination=./coverage/lcov.info",
"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": {
"@trojs/lint": "^0.4.0",
"eslint": "^10.0.0",
"globals": "^17.0.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"
}
}