-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
53 lines (53 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
46
47
48
49
50
51
52
53
{
"name": "validate-json-action",
"version": "1.0.0",
"description": "Validate JSON(s) by given schema using Ajv schema validator",
"license": "MIT",
"author": {
"name": "Jakub Vaněk",
"email": "[email protected]"
},
"keywords": [
"json",
"schema",
"validator",
"ajv",
"action",
"workflow"
],
"type": "module",
"main": "src/action.js",
"scripts": {
"format": "prettier --write .",
"lint": "eslint \"**/*.js\"",
"build": "ncc build src/action.js -o .dist",
"start": "node src/action.js"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/glob": "^0.2.0",
"ajv": "^8.9.0",
"ajv-formats": "^2.1.1",
"ansi-styles": "^6.1.0",
"yaml": "^2.3.2"
},
"devDependencies": {
"@vercel/ncc": "^0.33.1",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-node": "^11.1.0",
"prettier": "^2.5.1"
},
"repository": {
"type": "git",
"url": "https://github.com/vanekj/validate-json-action"
},
"bugs": {
"email": "[email protected]",
"url": "https://github.com/vanekj/validate-json-action/issues"
},
"volta": {
"node": "16.13.2",
"npm": "8.4.1"
}
}