forked from sylwester-malysz/joi-to-openapi
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
53 lines (53 loc) · 1.31 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
{
"name": "joi-openapi",
"version": "3.2.1",
"description": "Joi converter to openapi 3.0 standard",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/sdrubolo/joi-to-openapi.git"
},
"engines": {
"node": ">=14.16.1"
},
"keywords": [
"joi",
"swagger",
"openapi",
"schema"
],
"author": "Gianluca Sant",
"license": "MIT",
"bugs": {
"url": "https://github.com/sdrubolo/joi-to-openapi/issues"
},
"homepage": "https://github.com/sdrubolo/joi-to-openapi#readme",
"dependencies": {
"joi": "17.7.0",
"deepcopy": "^2.0.0",
"lodash": "^4.17.21",
"lodash.find": "^4.6.0"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-subset": "^1.6.0",
"sinon": "^7.3.2",
"sinon-chai": "^3.3.0",
"mocha": "^5.0.0",
"mocha-steps": "^1.1.0",
"eslint": "^7.25.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-chai-friendly": "^0.6.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-mocha": "^8.1.0",
"eslint-plugin-prettier": "^3.4.0",
"prettier": "^2.2.1",
"prettier-eslint": "^12.0.0"
},
"scripts": {
"test": "mocha './**/test/*.unit.js' --color --exit",
"test:file": "mocha --color --exit"
}
}