2015-10-03 11:54:09 +03:00
|
|
|
{
|
2016-01-13 00:35:08 +03:00
|
|
|
"name": "redoc",
|
2018-08-11 23:16:06 +03:00
|
|
|
"version": "2.0.0-alpha.36",
|
2017-10-12 00:01:37 +03:00
|
|
|
"description": "ReDoc",
|
2016-01-06 18:22:17 +03:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git://github.com/Rebilly/ReDoc"
|
|
|
|
},
|
2016-09-28 09:33:56 +03:00
|
|
|
"engines": {
|
2017-01-28 15:14:08 +03:00
|
|
|
"node": ">=6.9",
|
2016-09-28 09:33:56 +03:00
|
|
|
"npm": ">=3.0.0"
|
|
|
|
},
|
2018-03-21 18:32:28 +03:00
|
|
|
"author": "Roman Hotsiy <gotsijroman@gmail.com>",
|
|
|
|
"license": "MIT",
|
2015-10-03 11:54:09 +03:00
|
|
|
"keywords": [
|
2016-02-24 19:25:49 +03:00
|
|
|
"OpenAPI",
|
|
|
|
"OpenAPI Specification",
|
2015-10-03 11:54:09 +03:00
|
|
|
"Swagger",
|
|
|
|
"JSON-Schema",
|
|
|
|
"API",
|
2016-02-24 19:25:49 +03:00
|
|
|
"REST",
|
2015-10-03 11:54:09 +03:00
|
|
|
"documentation",
|
2018-03-21 18:32:28 +03:00
|
|
|
"React.js"
|
2015-10-03 11:54:09 +03:00
|
|
|
],
|
2017-11-19 22:27:44 +03:00
|
|
|
"main": "bundles/redoc.lib.js",
|
2018-05-16 12:44:36 +03:00
|
|
|
"types": "typings/index.d.ts",
|
2015-10-03 11:54:09 +03:00
|
|
|
"scripts": {
|
2018-03-21 19:58:58 +03:00
|
|
|
"start": "webpack-dev-server --mode=development --env.playground --hot --config demo/webpack.config.ts",
|
2018-03-17 18:58:28 +03:00
|
|
|
"start:prod": "webpack-dev-server --env.playground --mode=production --config demo/webpack.config.ts",
|
|
|
|
"start:benchmark": "webpack-dev-server --mode=production --env.bench --config demo/webpack.config.ts",
|
2018-05-14 11:00:07 +03:00
|
|
|
"test": "npm run lint && npm run unit && npm run bundlesize && npm run license-check",
|
2018-03-17 23:06:25 +03:00
|
|
|
"unit": "jest --coverage",
|
2018-02-17 22:27:15 +03:00
|
|
|
"e2e": "cypress run",
|
2018-03-17 22:09:18 +03:00
|
|
|
"e2e-ci": "cypress run --record",
|
2018-03-17 20:56:08 +03:00
|
|
|
"bundlesize": "bundlesize",
|
2017-11-19 13:51:59 +03:00
|
|
|
"cy:open": "cypress open",
|
|
|
|
"bundle:clean": "rimraf bundles",
|
2018-03-17 18:58:28 +03:00
|
|
|
"bundle:standalone": "webpack --env.standalone --mode=production",
|
|
|
|
"bundle:lib": "webpack --mode=production",
|
2017-11-19 22:27:44 +03:00
|
|
|
"bundle": "npm run bundle:clean && npm run bundle:lib && npm run bundle:standalone",
|
2018-05-18 15:10:16 +03:00
|
|
|
"declarations": "tsc --emitDeclarationOnly -p tsconfig.lib.json && cp -R src/types typings/",
|
2018-03-17 19:50:55 +03:00
|
|
|
"stats": "webpack --env.standalone --json --profile --mode=production > stats.json",
|
2017-11-22 14:03:31 +03:00
|
|
|
"prettier": "prettier --write \"src/**/*.{ts,tsx}\"",
|
2018-01-22 21:30:53 +03:00
|
|
|
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 1",
|
2018-01-29 14:09:38 +03:00
|
|
|
"lint": "tslint --project tsconfig.json",
|
2018-03-13 13:58:22 +03:00
|
|
|
"benchmark": "node ./benchmark/benchmark.js",
|
2018-03-22 19:22:11 +03:00
|
|
|
"start:demo": "webpack-dev-server --hot --config demo/webpack.config.ts --mode=development",
|
2018-05-18 15:10:16 +03:00
|
|
|
"compile:cli": "tsc custom.d.ts cli/index.ts --target es6 --module commonjs --types yargs",
|
2018-03-21 20:28:51 +03:00
|
|
|
"build:demo": "webpack --mode=production --config demo/webpack.config.ts",
|
2018-05-14 11:00:07 +03:00
|
|
|
"deploy:demo": "npm run build:demo && deploy-to-gh-pages --update demo/dist",
|
2018-06-28 20:26:51 +03:00
|
|
|
"license-check": "license-checker --production --onlyAllow 'MIT;ISC;Apache-2.0;BSD;BSD-2-Clause;BSD-3-Clause' --summary"
|
2015-10-03 11:54:09 +03:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2018-06-01 15:50:39 +03:00
|
|
|
"@babel/core": "7.0.0-beta.47",
|
|
|
|
"@babel/plugin-syntax-decorators": "7.0.0-beta.47",
|
|
|
|
"@babel/plugin-syntax-jsx": "7.0.0-beta.47",
|
|
|
|
"@babel/plugin-syntax-typescript": "7.0.0-beta.47",
|
2018-05-14 09:39:03 +03:00
|
|
|
"@cypress/webpack-preprocessor": "2.0.1",
|
2018-06-25 12:45:49 +03:00
|
|
|
"@types/chai": "4.1.4",
|
2017-11-22 14:26:28 +03:00
|
|
|
"@types/dompurify": "^0.0.31",
|
2018-08-17 16:57:32 +03:00
|
|
|
"@types/enzyme": "^3.1.13",
|
|
|
|
"@types/enzyme-to-json": "^1.5.2",
|
|
|
|
"@types/jest": "^23.3.1",
|
2017-10-12 00:01:37 +03:00
|
|
|
"@types/json-pointer": "^1.0.30",
|
2018-08-17 16:57:32 +03:00
|
|
|
"@types/lodash": "^4.14.116",
|
|
|
|
"@types/lunr": "^2.1.6",
|
2018-03-26 13:18:37 +03:00
|
|
|
"@types/mark.js": "^8.11.1",
|
2018-06-25 09:55:35 +03:00
|
|
|
"@types/marked": "^0.4.0",
|
2017-10-12 00:01:37 +03:00
|
|
|
"@types/prismjs": "^1.6.4",
|
2018-08-17 16:57:32 +03:00
|
|
|
"@types/prop-types": "^15.5.5",
|
|
|
|
"@types/react": "^16.4.11",
|
|
|
|
"@types/react-dom": "^16.0.7",
|
2018-05-14 09:39:03 +03:00
|
|
|
"@types/react-hot-loader": "^4.1.0",
|
2018-08-17 16:57:32 +03:00
|
|
|
"@types/react-tabs": "^1.0.5",
|
2018-07-16 18:28:11 +03:00
|
|
|
"@types/tapable": "1.0.4",
|
2018-08-17 16:57:32 +03:00
|
|
|
"@types/webpack": "^4.4.10",
|
2017-10-12 00:01:37 +03:00
|
|
|
"@types/webpack-env": "^1.13.0",
|
2018-08-17 16:57:32 +03:00
|
|
|
"@types/yargs": "^11.1.1",
|
2018-03-17 15:17:09 +03:00
|
|
|
"babel-loader": "8.0.0-beta.2",
|
2018-03-23 17:16:13 +03:00
|
|
|
"babel-plugin-styled-components": "^1.5.1",
|
2018-01-29 14:09:38 +03:00
|
|
|
"beautify-benchmark": "^0.2.4",
|
2018-03-26 13:18:37 +03:00
|
|
|
"bundlesize": "^0.17.0",
|
2018-06-25 09:55:35 +03:00
|
|
|
"conventional-changelog-cli": "^2.0.1",
|
2018-07-16 18:28:11 +03:00
|
|
|
"copy-webpack-plugin": "^4.5.2",
|
2018-05-29 18:44:03 +03:00
|
|
|
"core-js": "^2.5.7",
|
2018-07-16 18:28:11 +03:00
|
|
|
"coveralls": "^3.0.2",
|
|
|
|
"css-loader": "^1.0.0",
|
2018-08-17 16:57:32 +03:00
|
|
|
"cypress": "~3.1.0",
|
2018-03-21 20:28:51 +03:00
|
|
|
"deploy-to-gh-pages": "^1.3.6",
|
2018-08-17 16:57:32 +03:00
|
|
|
"enzyme": "^3.4.3",
|
|
|
|
"enzyme-adapter-react-16": "^1.2.0",
|
2018-05-18 15:14:40 +03:00
|
|
|
"enzyme-to-json": "^3.3.4",
|
2018-08-17 16:57:32 +03:00
|
|
|
"fork-ts-checker-webpack-plugin": "0.4.3",
|
2018-03-26 13:18:37 +03:00
|
|
|
"html-webpack-plugin": "^3.1.0",
|
2018-08-17 16:57:32 +03:00
|
|
|
"jest": "^23.5.0",
|
|
|
|
"license-checker": "^20.2.0",
|
2018-05-14 13:24:23 +03:00
|
|
|
"lodash": "^4.17.10",
|
2018-07-17 12:34:18 +03:00
|
|
|
"mobx": "^4.3.1",
|
2018-08-17 16:57:32 +03:00
|
|
|
"prettier": "^1.14.2",
|
2018-06-25 09:55:35 +03:00
|
|
|
"prettier-eslint": "^8.8.2",
|
2018-08-17 16:57:32 +03:00
|
|
|
"puppeteer": "^1.7.0",
|
2017-11-14 13:54:08 +03:00
|
|
|
"raf": "^3.4.0",
|
2018-08-17 16:57:32 +03:00
|
|
|
"react": "^16.4.2",
|
|
|
|
"react-dom": "^16.4.2",
|
2017-09-21 11:48:10 +03:00
|
|
|
"rimraf": "^2.6.2",
|
2018-01-29 14:09:38 +03:00
|
|
|
"shelljs": "^0.8.1",
|
2018-08-17 16:57:32 +03:00
|
|
|
"source-map-loader": "^0.2.4",
|
|
|
|
"style-loader": "^0.22.1",
|
2018-07-19 20:23:46 +03:00
|
|
|
"swagger2openapi": "^3.2.8",
|
2018-08-17 16:57:32 +03:00
|
|
|
"ts-jest": "^23.1.3",
|
2018-07-16 18:28:11 +03:00
|
|
|
"ts-loader": "4.4.2",
|
2018-08-17 16:57:32 +03:00
|
|
|
"ts-node": "^7.0.1",
|
|
|
|
"tslint": "^5.11.0",
|
2018-01-22 21:30:53 +03:00
|
|
|
"tslint-react": "^3.4.0",
|
2018-08-17 16:57:32 +03:00
|
|
|
"typescript": "^3.0.1",
|
|
|
|
"webpack": "^4.16.5",
|
|
|
|
"webpack-cli": "^3.1.0",
|
|
|
|
"webpack-dev-server": "^3.1.5",
|
2018-01-23 20:09:23 +03:00
|
|
|
"webpack-node-externals": "^1.6.0",
|
2018-05-29 18:44:03 +03:00
|
|
|
"workerize-loader": "^1.0.3",
|
2018-01-23 20:09:23 +03:00
|
|
|
"yaml-js": "^0.2.3"
|
2017-05-08 11:24:25 +03:00
|
|
|
},
|
|
|
|
"peerDependencies": {
|
2018-07-17 12:34:18 +03:00
|
|
|
"mobx": "^4.2.0",
|
|
|
|
"react": "^16.2.0",
|
|
|
|
"react-dom": "^16.2.0"
|
2017-03-15 18:50:10 +03:00
|
|
|
},
|
2017-04-23 17:43:18 +03:00
|
|
|
"dependencies": {
|
2018-06-25 09:55:35 +03:00
|
|
|
"classnames": "^2.2.6",
|
2017-10-12 00:01:37 +03:00
|
|
|
"decko": "^1.2.0",
|
2018-08-17 16:57:32 +03:00
|
|
|
"dompurify": "^1.0.7",
|
2018-01-29 15:32:57 +03:00
|
|
|
"eventemitter3": "^3.0.0",
|
2017-05-08 11:24:25 +03:00
|
|
|
"json-pointer": "^0.6.0",
|
2018-08-17 16:57:32 +03:00
|
|
|
"json-schema-ref-parser": "^5.1.2",
|
|
|
|
"lunr": "^2.3.2",
|
2018-01-21 22:39:51 +03:00
|
|
|
"mark.js": "^8.11.1",
|
2018-08-17 17:26:20 +03:00
|
|
|
"marked": "0.3.18",
|
2018-07-16 18:28:11 +03:00
|
|
|
"memoize-one": "^4.0.0",
|
2018-08-17 16:57:32 +03:00
|
|
|
"mobx-react": "^5.2.5",
|
|
|
|
"openapi-sampler": "1.0.0-beta.14",
|
2018-06-25 09:55:35 +03:00
|
|
|
"perfect-scrollbar": "^1.4.0",
|
2018-07-16 18:28:11 +03:00
|
|
|
"polished": "^1.9.3",
|
2018-06-25 09:55:35 +03:00
|
|
|
"prismjs": "^1.15.0",
|
|
|
|
"prop-types": "^15.6.2",
|
2018-08-17 16:57:32 +03:00
|
|
|
"react-dropdown": "^1.6.1",
|
|
|
|
"react-hot-loader": "^4.3.4",
|
2017-10-12 00:01:37 +03:00
|
|
|
"react-tabs": "^2.0.0",
|
2018-08-17 16:57:32 +03:00
|
|
|
"slugify": "^1.3.1",
|
2017-11-20 03:18:43 +03:00
|
|
|
"stickyfill": "^1.1.1",
|
2018-08-17 16:57:32 +03:00
|
|
|
"styled-components": "^3.4.2",
|
2018-06-25 09:55:35 +03:00
|
|
|
"tslib": "^1.9.3"
|
2017-10-12 00:01:37 +03:00
|
|
|
},
|
2018-02-17 22:27:15 +03:00
|
|
|
"resolutions": {
|
2018-03-17 18:58:28 +03:00
|
|
|
"@types/chai": "4.0.8",
|
|
|
|
"@types/tapable": "1.0.0"
|
2018-02-17 22:27:15 +03:00
|
|
|
},
|
2018-03-17 20:56:08 +03:00
|
|
|
"bundlesize": [
|
|
|
|
{
|
|
|
|
"path": "./bundles/redoc.standalone.js",
|
|
|
|
"maxSize": "300 kB"
|
|
|
|
}
|
|
|
|
],
|
2017-10-12 00:01:37 +03:00
|
|
|
"jest": {
|
|
|
|
"transform": {
|
|
|
|
"^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
|
|
|
|
},
|
2017-11-14 13:54:08 +03:00
|
|
|
"setupTestFrameworkScriptFile": "<rootDir>/src/setupTests.ts",
|
2018-01-29 14:09:38 +03:00
|
|
|
"testPathIgnorePatterns": [
|
|
|
|
"/node_modules/",
|
|
|
|
"/benchmark/"
|
|
|
|
],
|
2017-10-12 00:01:37 +03:00
|
|
|
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
|
|
|
|
"moduleFileExtensions": [
|
|
|
|
"ts",
|
|
|
|
"tsx",
|
|
|
|
"js",
|
|
|
|
"jsx",
|
|
|
|
"json"
|
|
|
|
],
|
|
|
|
"moduleNameMapper": {
|
2018-03-17 21:57:45 +03:00
|
|
|
"\\.(css|less)$": "<rootDir>/src/empty.js"
|
2017-10-12 00:01:37 +03:00
|
|
|
},
|
|
|
|
"globals": {
|
|
|
|
"ts-jest": {
|
|
|
|
"skipBabel": true
|
|
|
|
}
|
2018-03-17 21:57:45 +03:00
|
|
|
},
|
|
|
|
"collectCoverageFrom": [
|
|
|
|
"src/**/*.{ts,tsx}"
|
|
|
|
],
|
2018-03-17 23:04:37 +03:00
|
|
|
"coverageReporters": [
|
|
|
|
"json",
|
|
|
|
"lcov",
|
|
|
|
"text-summary"
|
|
|
|
],
|
|
|
|
"coveragePathIgnorePatterns": [
|
|
|
|
"\\.d\\.ts$"
|
|
|
|
]
|
2017-10-12 00:01:37 +03:00
|
|
|
},
|
|
|
|
"prettier": {
|
|
|
|
"singleQuote": true,
|
|
|
|
"trailingComma": "all",
|
|
|
|
"printWidth": 100,
|
|
|
|
"parser": "typescript"
|
2017-04-23 17:43:18 +03:00
|
|
|
}
|
2018-03-23 06:44:41 +03:00
|
|
|
}
|