-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.44 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
{
"name": "json-types",
"version": "0.0.2",
"type": "module",
"description": "This document attempts to describe data types (primarily aimed at JSON-like structures) in a simple and natural way. Any [valid JSON](https://www.json.org/) could be validated against an **JSON X-Types** definition.",
"main": "index.js",
"scripts": {
"refs": "redocly bundle applications/resources/openapi-with-refs.yaml -o=applications/outputs/x-openapi-with-refs.yaml --force --config=applications/x-inline-refs-config-redocly.yaml && redocly lint applications/outputs/x-openapi-with-refs.yaml --config=applications/x-inline-refs-config-redocly.yaml",
"lint": "eslint .",
"test": "vitest",
"coverage": "vitest run --coverage",
"prettier:check": "npx prettier --check \"**/*.{js,html,yaml,css,md,json}\"",
"prettier": "npx prettier --write \"**/*.{js,html,yaml,css,md,json}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/tatomyr/json-types.git"
},
"keywords": [
"json",
"types"
],
"author": "tatomyr",
"license": "ISC",
"bugs": {
"url": "https://github.com/tatomyr/json-types/issues"
},
"homepage": "https://github.com/tatomyr/json-types#readme",
"devDependencies": {
"@hyperjump/json-schema": "^1.9.9",
"@redocly/cli": "1.25.5",
"@redocly/openapi-core": "1.25.5",
"@vitest/coverage-v8": "^1.4.0",
"eslint": "^8.57.0",
"prettier": "^3.2.5",
"vitest": "^1.4.0"
}
}