forked from metadevpro/baucis-openapi3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.5 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
{
"name": "baucis-openapi3",
"version": "0.3.0",
"description": "Generate customizable OpenAPI version 3.0.0 definitions for your Baucis REST API.",
"homepage": "https://github.com/metadevpro/baucis-openapi3",
"repository": {
"type": "git",
"url": "https://github.com/metadevpro/baucis-openapi3.git"
},
"bugs": {
"url": "https://github.com/metadevpro/baucis-openapi3/issues/new"
},
"main": "index.js",
"scripts": {
"lint": "node_modules/.bin/eslint *.js src/**/*.js test/**/*.js",
"pretest": "npm run lint",
"test": "nyc --reporter=lcov ./node_modules/.bin/mocha --recursive --timeout 5000 -R spec ",
"test:tdd": "./node_modules/.bin/mocha --recursive --timeout 5000 -R min --watch"
},
"author": {
"name": "Dr. Pedro J. Molina",
"email": "[email protected]",
"url": "http://pjmolina.com"
},
"license": "MIT",
"dependencies": {
"deco": "~0.12.3"
},
"peerDependencies": {
"mongoose": ">=3 <5",
"baucis": "^1.0.0"
},
"devDependencies": {
"async": "^2.6.2",
"baucis": "~1.6.8",
"codeclimate-test-reporter": "^0.5.1",
"coveralls": "^3.0.3",
"eslint": "^5.16.0",
"expect.js": "~0.3.1",
"express": "~4.16.4",
"mocha": "~6.0.2",
"mongoose": "^4.12.4",
"nyc": "^13.3.0",
"request": "^2.88.0"
},
"keywords": [
"baucis",
"REST",
"RESTful",
"API",
"plugin",
"openapi3",
"swagger",
"documentation"
],
"greenkeeper": {
"ignore": [
"deco",
"mongoose"
]
}
}