-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.24 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.24 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
64
65
66
67
68
69
70
71
72
73
{
"name": "openapi2html",
"version": "1.1.12",
"description": "Yet another static html generator for Open API 2.0 / Swagger 2.0",
"main": "src/index.js",
"author": "Frank Thelen",
"license": "MIT",
"homepage": "https://github.com/frankthelen/openapi2html#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/frankthelen/openapi2html.git"
},
"bugs": {
"url": "https://github.com/frankthelen/openapi2html/issues"
},
"keywords": [
"swagger",
"openapi",
"open api",
"html",
"documentation",
"generator"
],
"scripts": {
"lint": "eslint src/*.js src/components/*.jsx test/**/*.js --ignore-path ./.eslintignore",
"test": "NODE_ENV=test nyc --reporter=lcov --reporter=text-summary mocha --exit --recursive --timeout 3000 test",
"coveralls": "nyc report --reporter=lcovonly && cat ./coverage/lcov.info | coveralls",
"preversion": "npm run lint && npm test",
"dev": "npm-run-all --parallel watch:*",
"watch:server": "nodemon -e js,html --ignore public/ --watch src src/server.js",
"watch:jsx": "babel --watch -d . ./src/**/*.jsx",
"postinstall": "babel -d . ./src/**/*.jsx"
},
"engines": {
"node": ">=10.x.x"
},
"devDependencies": {
"@hapi/hapi": "^19.0.5",
"babel-eslint": "^10.0.3",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.0.9",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.18.0",
"eslint-plugin-should-promised": "^2.0.0",
"html-entities": "^1.2.1",
"mocha": "^7.0.1",
"nodemon": "^2.0.2",
"npm-run-all": "^4.1.5",
"nyc": "^15.0.0",
"request": "^2.88.0",
"request-promise": "^4.2.5",
"sinon": "^8.1.1",
"sinon-chai": "^3.4.0",
"swagger-parser": "^9.0.0"
},
"dependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"decamelize": "^4.0.0",
"json-stringify-safe": "^5.0.1",
"markdown-it": "^10.0.0",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-render-html": "^0.6.0"
}
}