generated from dsanders11/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
67 lines (67 loc) · 2.01 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "json-schema-validate-action",
"description": "GitHub Action which validates YAML/JSON files against a JSON schema",
"version": "0.0.0-development",
"author": "David Sanders",
"private": true,
"homepage": "https://github.com/dsanders11/json-schema-validate-action",
"repository": {
"type": "git",
"url": "git+https://github.com/dsanders11/json-schema-validate-action.git"
},
"bugs": {
"url": "https://github.com/dsanders11/json-schema-validate-action/issues"
},
"keywords": [
"actions",
"json-schema",
"ajv",
"validate"
],
"exports": {
".": "./dist/index.js"
},
"engines": {
"node": ">=20"
},
"scripts": {
"bundle": "npm run format:write && npm run package",
"ci-test": "vitest run --coverage --reporter=verbose",
"format:write": "npx prettier --write .",
"format:check": "npx prettier --check .",
"lint": "npx eslint . -c ./.github/linters/.eslintrc.yml",
"package": "ncc build src/index.ts --license licenses.txt",
"package:watch": "npm run package -- --watch",
"test": "vitest run --coverage --reporter=verbose",
"all": "npm run format:write && npm run lint && npm run test && npm run package",
"prepare": "husky"
},
"license": "MIT",
"dependencies": {
"@actions/cache": "^3.2.2",
"@actions/core": "^1.10.1",
"@actions/glob": "^0.4.0",
"@actions/http-client": "^2.2.0",
"ajv": "^8.12.0",
"ajv-draft-04": "^1.0.0",
"ajv-formats": "^2.1.1",
"yaml": "^2.3.4"
},
"devDependencies": {
"@types/node": "^20.14.10",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.15.0",
"@vercel/ncc": "^0.38.1",
"@vitest/coverage-v8": "^2.0.1",
"eslint": "^8.57.0",
"eslint-plugin-github": "^5.0.1",
"eslint-plugin-jsonc": "^2.16.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-vitest": "^0.5.4",
"husky": "^9.0.11",
"prettier": "^3.3.2",
"prettier-eslint": "^16.3.0",
"typescript": "^5.5.3",
"vitest": "^2.0.1"
}
}