-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
42 lines (42 loc) · 1006 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
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}'"
},
"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.0.0",
"@types/jest": "^24.0.22",
"ajv": "^6.10.2",
"better-ajv-errors": "^0.6.7",
"chalk": "^2.4.2",
"path": "^0.12.7"
},
"devDependencies": {
"@types/node": "^12.12.6",
"husky": "^3.0.9",
"jest": "^24.9.0",
"jest-circus": "^24.7.1",
"lint-staged": "^9.4.2",
"prettier": "1.18.2",
"ts-jest": "^24.0.2",
"typescript": "^3.7.2"
}
}