forked from WaleedAshraf/asyncapi-validator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.56 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
{
"name": "asyncapi-validator",
"version": "4.1.0",
"description": "Message validator for Async API schema supporting socket.io messages like `x-ack`.",
"main": "index.js",
"types": "index.d.ts",
"type": "commonjs",
"scripts": {
"build": "webpack --mode production",
"test": "jest",
"lint": "./node_modules/.bin/eslint ./"
},
"repository": {
"type": "git",
"url": "git@github.com:netcore-jsa/asyncapi-validator.git"
},
"keywords": [
"asyncapi",
"socket.io",
"kafka",
"rabbitmq",
"test",
"validator",
"api"
],
"author": "Waleed Ashraf",
"contributors": [
{
"name" : "Marek Urban",
"email" : "marek.u@unimus.net",
"url" : "https://github.com/marek-urban"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/netcore-jsa/asyncapi-validator/issues"
},
"homepage": "https://github.com/netcore-jsa/asyncapi-validator?tab=readme-ov-file#readme",
"dependencies": {
"@asyncapi/openapi-schema-parser": "^2.0.1",
"@asyncapi/parser": "^1.18.1",
"ajv": "^8.11.0",
"ajv-formats": "^2.1.1"
},
"devDependencies": {
"@types/jest": "^25.2.1",
"codecov": "^3.8.3",
"eslint": "7.0.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^28.0.1",
"babel-core": "^6.3.21",
"babel-loader": "^9.1.3",
"@babel/preset-env": "^7.23.9",
"webpack": "^5.90.0",
"webpack-cli": "^5.1.4"
}
}