forked from OrRosenblatt/validate-json-action
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1008 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 1008 Bytes
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
{
"name": "validate-json-action",
"version": "0.0.1",
"private": true,
"description": "A Github action for validating JSON",
"main": "lib/main.js",
"scripts": {
"start": "node lib/main.js",
"build": "tsc -p tsconfig.build.json",
"test": "npm run build && jest",
"format": "prettier --write '**/*.{ts,js,json}'",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OrRosenblatt/validate-json-action.git"
},
"keywords": [
"actions",
"json-schema",
"ajv"
],
"author": "OrRosenblatt",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.11.1",
"ajv": "^8.17.1",
"better-ajv-errors": "^2.0.2",
"chalk": "^2.4.2"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^24.10.0",
"husky": "^9.1.7",
"jest": "^30.2.0",
"jest-circus": "^30.2.0",
"lint-staged": "^16.2.7",
"prettier": "^3.7.4",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3"
}
}