This repository has been archived by the owner on Dec 3, 2021. It is now read-only.
forked from Redocly/openapi-sampler
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
117 lines (117 loc) · 3.09 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "@neuralegion/openapi-sampler",
"version": "0.0.0",
"private": false,
"description": "Tool for generation samples based on OpenAPI payload/response schema",
"main": "dist/openapi-sampler.js",
"jsnext:main": "src/openapi-sampler.js",
"scripts": {
"test": "gulp",
"lint": "gulp lint",
"test-browser": "gulp test-browser",
"watch": "gulp watch",
"build": "gulp build",
"build-dist": "gulp build",
"coverage": "gulp coverage",
"prepublish": "npm run build",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Neuralegion/openapi-sampler.git"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"OpenAPI",
"Swagger",
"instantiator",
"sampler",
"faker"
],
"contributors": [
"Mirsad Halilcevic <[email protected]>",
"Artem Derevnjuk <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Neuralegion/openapi-sampler/issues"
},
"homepage": "https://github.com/Neuralegion/openapi-sampler#readme",
"browserslist": "> 0.25%, not dead",
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/preset-env": "^7.12.7",
"@babel/register": "^7.12.1",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"babel-plugin-istanbul": "^6.0.0",
"babelify": "^10.0.0",
"browserify": "^17.0.0",
"browserify-istanbul": "^3.0.1",
"chai": "^4.2.0",
"core-js": "^3.8.1",
"coveralls": "^3.1.0",
"del": "^6.0.0",
"eslint": "^7.15.0",
"glob": "^7.1.6",
"gulp": "^4.0.2",
"gulp-eslint": "^6.0.0",
"gulp-filter": "^6.0.0",
"gulp-istanbul": "^1.1.3",
"gulp-livereload": "^4.0.2",
"gulp-load-plugins": "^2.0.6",
"gulp-mocha": "^7.0.2",
"gulp-plumber": "^1.2.1",
"gulp-rename": "^2.0.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-uglify": "^3.0.2",
"husky": "^4.3.4",
"json-loader": "^0.5.7",
"karma": "^5.2.3",
"karma-babel-preprocessor": "^8.0.1",
"karma-browserify": "^7.0.0",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.3",
"karma-firefox-launcher": "^2.1.0",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-phantomjs-launcher": "^1.0.4",
"karma-sinon-chai": "^2.0.2",
"lint-staged": "^10.5.3",
"lolex": "^6.0.0",
"mocha": "^8.2.1",
"phantomjs-prebuilt": "^2.1.16",
"semantic-release": "^17.3.0",
"sinon": "^9.2.1",
"sinon-chai": "^3.5.0",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0"
},
"dependencies": {
"faker": "^5.1.0",
"json-pointer": "^0.6.1",
"randexp": "^0.5.3"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged",
"post-commit": "git update-index --again"
}
},
"lint-staged": {
"src/**/*.js": [
"eslint --fix",
"git add"
]
}
}