-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 892 Bytes
/
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
{
"name": "jsonschema_validator",
"version": "1.0.0",
"description": "GitHub action for validating JSON against multiple schemas (a main and several referenced)",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "ncc build index.js -o dist --source-map"
},
"repository": {
"type": "git",
"url": "git+https://github.com/IdrissaD/jsonschema_validator.git"
},
"keywords": [
"JSON",
"ajv",
"JSON Schema",
"GitHub Action"
],
"author": "@PnX-SI",
"license": "MIT",
"bugs": {
"url": "https://github.com/IdrissaD/jsonschema_validator/issues"
},
"homepage": "https://github.com/IdrissaD/jsonschema_validator#readme",
"dependencies": {
"@actions/core": "^1.9.0",
"@actions/github": "^5.0.3",
"@vercel/ncc": "^0.34.0",
"ajv": "^8.11.0",
"ajv-formats": "^2.1.1"
}
}