-
Notifications
You must be signed in to change notification settings - Fork 47
/
package.json
77 lines (77 loc) · 1.97 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
71
72
73
74
75
76
77
{
"name": "openapi-sampler",
"version": "1.6.0",
"description": "Tool for generation samples based on OpenAPI payload/response schema",
"main": "dist/openapi-sampler.js",
"module": "src/openapi-sampler.js",
"types": "./src/types.d.ts",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "npm run lint && jest",
"test:watch": "jest --watch",
"coverage": "jest --coverage",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"build": "gulp build",
"prepublishOnly": "npm run build"
},
"files": [
"src/",
"dist/"
],
"repository": {
"type": "git",
"url": "https://github.com/redocly/openapi-sampler.git"
},
"keywords": [
"OpenAPI",
"Swagger",
"instantiator",
"sampler",
"faker"
],
"author": "Roman Hotsiy <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/redocly/openapi-sampler/issues"
},
"homepage": "https://github.com/redocly/openapi-sampler/",
"browserslist": "> 0.25%, not dead",
"devDependencies": {
"@babel/core": "^7.7.2",
"@babel/preset-env": "^7.7.1",
"@babel/register": "^7.7.0",
"@types/jest": "^29.5.12",
"ajv": "^8.1.0",
"ajv-formats": "^2.0.2",
"babel-eslint": "^10.0.3",
"babel-jest": "^29.7.0",
"babel-loader": "^8.0.6",
"babelify": "^10.0.0",
"browserify": "^16.5.0",
"core-js": "^3.4.1",
"coveralls-next": "^4.2.1",
"del": "^5.1.0",
"eslint": "^7.27.0",
"glob": "^7.1.6",
"gulp": "^4.0.2",
"gulp-eslint": "^6.0.0",
"gulp-filter": "^6.0.0",
"gulp-load-plugins": "^2.0.1",
"gulp-rename": "^1.4.0",
"gulp-sourcemaps": "^2.6.5",
"gulp-uglify": "^3.0.2",
"jest": "^29.7.0",
"json-loader": "^0.5.7",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0"
},
"dependencies": {
"@types/json-schema": "^7.0.7",
"fast-xml-parser": "^4.5.0",
"json-pointer": "0.6.2"
},
"overrides": {
"braces": "3.0.3"
}
}