forked from amorimjj/redoc-try-it-out
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 loc) · 1.47 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
{
"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": "npm run test && webpack --mode production && tsc -p ./tsconfig.build.json",
"lint": "eslint --config .eslintrc.json --ignore-path .eslintignore ./src/**/*.ts --fix",
"test": "jest ./test/**",
"prepare": "husky install",
"pretty:check": "prettier . -c"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CommunityExtensions/redoc-try-it-out.git"
},
"contributors": [
{
"name": "Jarl André Hübenthal",
"email": "[email protected]",
"url": "https://github.com/jarlah"
}
],
"author": "amorimjj",
"keywords": [
"redoc",
"try it",
"swagger ui"
],
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/jquery": "^3.5.29",
"@types/jquery.scrollto": "^1.4.32",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"eslint": "^8.56.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^15.2.0",
"prettier": "3.2.4",
"ts-jest": "^29.1.1",
"ts-loader": "^9.5.1",
"typescript": "^5.3.3",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}