-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
74 lines (74 loc) · 1.8 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
68
69
70
71
72
73
74
{
"name": "v8r",
"version": "4.2.0",
"description": "A command-line JSON, YAML and TOML validator that's on your wavelength",
"scripts": {
"test": "V8R_CACHE_NAME=v8r-test c8 --reporter=text mocha \"src/**/*.spec.js\"",
"lint": "eslint \"**/*.{js,cjs,mjs}\"",
"coverage": "c8 report --reporter=cobertura",
"prettier": "prettier --write \"**/*.{js,cjs,mjs}\"",
"prettier:check": "prettier --check \"**/*.{js,cjs,mjs}\"",
"v8r": "src/index.js"
},
"bin": {
"v8r": "src/index.js"
},
"exports": "./src/public.js",
"files": [
"src/**/!(*.spec).js",
"config-schema.json",
"CHANGELOG.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/chris48s/v8r.git"
},
"homepage": "https://github.com/chris48s/v8r",
"author": "chris48s",
"license": "MIT",
"dependencies": {
"ajv": "^8.8.2",
"ajv-draft-04": "^1.0.0",
"ajv-formats": "^3.0.1",
"chalk": "^5.0.0",
"cosmiconfig": "^9.0.0",
"decamelize": "^6.0.0",
"flat-cache": "^5.0.0",
"glob": "^10.1.0",
"global-agent": "^3.0.0",
"got": "^13.0.0",
"is-url": "^1.2.4",
"js-yaml": "^4.0.0",
"json5": "^2.2.0",
"minimatch": "^9.0.0",
"smol-toml": "^1.0.1",
"yargs": "^17.0.1"
},
"devDependencies": {
"c8": "^10.1.2",
"eslint": "^9.9.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jsdoc": "^50.2.2",
"eslint-plugin-mocha": "^10.0.3",
"eslint-plugin-prettier": "^5.0.0",
"mocha": "^10.7.3",
"mock-cwd": "^1.0.0",
"nock": "^13.0.4",
"prettier": "^3.0.0",
"prettier-plugin-jsdoc": "^1.3.0"
},
"engines": {
"node": ">=18"
},
"type": "module",
"keywords": [
"JSON",
"YAML",
"schema",
"validator",
"validation",
"jsonschema",
"json-schema",
"command-line"
]
}