forked from amorimjj/redoc-try-it-out
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 1.02 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
{
"name": "redoc-try-it-out",
"version": "1.0.9",
"description": "Using Swagger UI Try It Out function on Redoc",
"jsdelivr": "./dist/try-it-out.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepublishOnly": "npm run build",
"build": "webpack --mode production && tsc -p ./tsconfig.build.json",
"lint": "eslint --config .eslintrc.json --ignore-path .eslintignore ./src/**/*.ts --fix",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/amorimjj/redoc-try-it-out.git"
},
"author": "amorimjj",
"keywords": [
"redoc",
"try it",
"swagger ui"
],
"license": "MIT",
"devDependencies": {
"@types/jquery": "^3.5.6",
"@types/jquery.scrollto": "^1.4.29",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.0.0",
"ts-loader": "^9.2.5",
"typescript": "^4.4.3",
"webpack": "^5.53.0",
"webpack-cli": "^4.8.0"
}
}