generated from actions/javascript-action
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
38 lines (38 loc) · 1 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
{
"name": "asyncapi-github-action",
"version": "0.0.10",
"description": "Github action for AsyncAPI schema validation",
"keywords": [
"GitHub",
"Actions",
"AsyncAPI"
],
"homepage": "https://github.com/WaleedAshraf/asyncapi-github-action#readme",
"bugs": {
"url": "https://github.com/WaleedAshraf/asyncapi-github-action/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WaleedAshraf/asyncapi-github-action"
},
"license": "MIT",
"author": "Waleed Ashraf",
"main": "index.js",
"scripts": {
"lint": "eslint index.js",
"package": "ncc build index.js -o dist",
"test": "eslint index.js && jest"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@asyncapi/avro-schema-parser": "^1.1.0",
"@asyncapi/parser": "^1.18.1"
},
"devDependencies": {
"@types/jest": "^27.5.1",
"@vercel/ncc": "^0.36.1",
"eslint": "^8.16.0",
"eslint-plugin-jest": "^26.2.2",
"jest": "^28.1.0"
}
}