-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
57 lines (57 loc) · 1.41 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
{
"name": "validate-json",
"version": "1.1.0",
"description": "Validate JSON Schemas",
"author": "Petter Walbø Johnsgård",
"license": "MIT",
"main": "index.js",
"keywords": [
"GitHub",
"Actions",
"JSON",
"Validator",
"Schema"
],
"homepage": "https://github.com/walbo/validate-json-schema#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/walbo/validate-json-schema.git"
},
"bugs": {
"url": "https://github.com/walbo/validate-json-schema/issues"
},
"scripts": {
"all": "npm run lint && npm run prepare && npm run test",
"build": "ncc build src/index.ts -o dist --source-map --license licenses.txt --minify",
"format": "prettier --write .",
"lint": "eslint .",
"prepare": "husky install",
"tsc": "tsc --pretty --noEmit"
},
"dependencies": {
"@actions/core": "1.10.0",
"ajv": "8.11.0",
"ajv-draft-04": "1.0.0",
"axios": "1.1.3",
"fast-glob": "3.2.11",
"lodash": "4.17.21",
"picocolors": "1.0.0"
},
"devDependencies": {
"@types/lodash": "4.14.189",
"@types/node": "18.11.11",
"@typescript-eslint/eslint-plugin": "5.45.1",
"@typescript-eslint/parser": "5.45.1",
"@vercel/ncc": "0.34.0",
"eslint": "8.29.0",
"eslint-config-prettier": "8.5.0",
"husky": "8.0.2",
"lint-staged": "13.0.3",
"prettier": "2.7.1",
"typescript": "4.9.3"
},
"lint-staged": {
"*.{js,ts}": "eslint --cache --fix",
"*.{js,css,md,yml,json}": "prettier --write"
}
}