-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.08 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.08 KB
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": "validate-json-action",
"version": "0.0.2",
"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}'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nhalstead/validate-json-action.git"
},
"keywords": [
"actions",
"json-schema",
"ajv"
],
"author": "nhalstead",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1",
"ajv": "^8.18.0",
"better-ajv-errors": "^2.0.3",
"chalk": "^4.1.2",
"glob": "^13.0.6",
"path": "^0.12.7"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/junit-report-builder": "^3.0.2",
"@types/node": "^18.19.130",
"husky": "^3.0.9",
"jest": "^30.2.0",
"jest-junit": "^16.0.0",
"junit-report-builder": "^5.1.1",
"lint-staged": "^9.4.2",
"prettier": "1.18.2",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3"
}
}