-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
45 lines (45 loc) · 1.11 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
{
"name": "asyncapi-validator",
"version": "5.0.1",
"description": "message validator through asyncapi schema",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "jest",
"lint": "./node_modules/.bin/eslint ./"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WaleedAshraf/asyncapi-validator.git"
},
"keywords": [
"asyncapi",
"kafka",
"rabbitmq",
"test",
"validator",
"api"
],
"author": "Waleed Ashraf",
"license": "MIT",
"bugs": {
"url": "https://github.com/WaleedAshraf/asyncapi-validator/issues"
},
"homepage": "https://github.com/WaleedAshraf/asyncapi-validator#readme",
"dependencies": {
"@asyncapi/openapi-schema-parser": "3.0.24",
"@asyncapi/parser": "3.1.0",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1"
},
"devDependencies": {
"@types/jest": "^25.2.1",
"eslint": "7.2.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^28.0.1"
}
}