forked from OrRosenblatt/validate-json-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.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
39
40
41
42
43
44
45
46
{
"name": "@scratchaddons/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}'",
"pack": "ncc build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ScratchAddons/validate-json-action.git"
},
"keywords": [
"actions",
"json-schema",
"ajv"
],
"author": "OrRosenblatt",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/glob": "^0.4.0",
"@vercel/ncc": "^0.38.1",
"ajv": "^6.12.6",
"axios": "^1.5.1",
"better-ajv-errors": "^0.8.2",
"chalk": "^2.4.2",
"path": "^0.12.7"
},
"devDependencies": {
"@types/jest": "^29.5.6",
"@types/node": "^20.8.7",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-circus": "^29.7.0",
"lint-staged": "^15.0.2",
"prettier": "3.0.3",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
}
}