forked from oas-tools/oas-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.24 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
{
"name": "@oas-tools/core",
"version": "3.0.3",
"description": "OAS Tools core library",
"type": "module",
"main": "./src/index.js",
"exports": {
".": "./src/entrypoint.cjs"
},
"files": [
"src"
],
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"lint": "eslint src --ext .mjs --ext .js --ext .cjs",
"format": "npm run lint -- --fix",
"test": "mocha ./tests/index.test.js",
"cov": "c8 --all -n=src/* -x=src/index_old.js -x=src/entrypoint.cjs --reporter=lcov --reporter=text npm run test"
},
"author": "ISA Group, University of Seville",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/oas-tools/oas-tools.git"
},
"dependencies": {
"@oas-tools/commons": "^1.0.0",
"js-yaml": "^3.13.1",
"json-schema-ref-parser": "^9.0.9",
"lodash": "^4.17.21",
"rc": "^1.2.8",
"swagger-ui-express": "^4.3.0",
"validator": "^13.0.0",
"whatwg-mimetype": "^2.3.0"
},
"devDependencies": {
"axios": "^0.27.2",
"c8": "^7.11.3",
"eslint": "^8.19.0",
"express": "^4.17.2",
"mocha": "^9.2.0",
"sinon": "^14.0.0"
},
"keywords": [
"OpenAPI",
"REST",
"OAS",
"Open API",
"API",
"Swagger",
"Tools"
]
}