-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
70 lines (70 loc) · 2.18 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
63
64
65
66
67
68
69
70
{
"name": "@ga4gh/gh-openapi-docs",
"description": "Build ReDoc API documentation for an OpenAPI specification and host on GitHub Pages",
"author": "James Eddy <[email protected]>",
"version": "0.2.2-rc3",
"license": "Apache-2.0",
"repository": "github:ga4gh/gh-openapi-docs",
"main": "./src/lib/index.js",
"scripts": {
"fetch": "node src/fetchpages.js",
"build:swagger": "node src/swagger-ui.js",
"build:redoc": "node src/redoc-ui.js",
"clean": "rm -rf dist/* bin/*",
"build": "npx webpack-cli --mode=development",
"cleanBuild": "npm run clean && npm run build",
"test": "npx mocha-webpack --webpack-config webpack.config-test.js --recursive \"src\" \"test/mocha\" --exit",
"coverage": "npx nyc npm run test",
"pushCoverageReport": "npx nyc report --reporter=text-lcov | npx coveralls",
"lint:all": "echo 1"
},
"bin": "./dist/bundle.js",
"dependencies": {
"@babel/runtime": "^7.6.3",
"@redocly/openapi-cli": "0.8.4",
"chalk": "2.4.2",
"git-repo-info": "^2.1.1",
"is-ci": "^2.0.0",
"json-refs": "^3.0.15",
"loader-utils": "^1.4.0",
"lodash": "^4.17.19",
"oas-linter": "^3.0.2",
"oas-resolver": "^2.2.7",
"oas-validator": "^3.3.3",
"redoc-cli": "^0.9.7",
"remote-origin-url": "^2.0.0",
"shelljs": "^0.7.0",
"swagger-ui-dist": "3.24.0",
"update-notifier": "3.0.1",
"yargs-parser": "^19.0.4",
"commander": "^2.20.3"
},
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/compat-data": "^7.10.1",
"@babel/core": "^7.10.2",
"@babel/node": "^7.10.1",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/polyfill": "^7.8.7",
"@babel/preset-env": "^7.8.7",
"@babel/register": "^7.9.0",
"babel-loader": "^8.0.6",
"cross-env": "^7.0.2",
"istanbul-instrumenter-loader": "^3.0.1",
"mocha": "^7.1.1",
"mocha-webpack": "^2.0.0-beta.0",
"nyc": "^15.0.1",
"pkg": "^4.4.4",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.11",
"webpack-node-externals": "^1.7.2"
},
"nyc": {
"instrument": false,
"sourceMap": false
},
"publishConfig": {
"access": "public"
}
}