-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 2.08 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 2.08 KB
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
{
"name": "json-x-type",
"version": "0.3.0",
"type": "module",
"description": "JSON X-Type is a JSON data type type notation with an emphasis on being intuitive to write and easy to read.",
"scripts": {
"lint": "eslint .",
"test": "vitest run --coverage",
"prettier:check": "npx prettier --check \"**/*.{js,html,yaml,css,md,json}\"",
"prettier": "npx prettier --write \"**/*.{js,html,yaml,css,md,json}\"",
"pets:to-x-types": "redocly bundle applications/resources/pets.yaml --config ./applications/generate-x-types.redocly.yaml -o applications/__tests__/file-snapshots/pets-to-x-types.yaml",
"pets:back-to-schemas": "redocly bundle applications/__tests__/file-snapshots/pets-to-x-types.yaml --config ./applications/generate-flat-schemas.redocly.yaml -o applications/__tests__/file-snapshots/pets-back-to-schemas.yaml && redocly bundle applications/__tests__/file-snapshots/pets-back-to-schemas.yaml --config ./applications/remove-x-types.redocly.yaml -o applications/__tests__/file-snapshots/pets-back-to-schemas.yaml",
"cafe:to-x-types": "redocly bundle applications/resources/cafe.yaml --config ./applications/generate-x-types.redocly.yaml -o applications/resources/cafe.x-type.yaml",
"cafe:back-to-schemas": "redocly bundle applications/resources/cafe.x-type.yaml --config ./applications/generate-flat-schemas.redocly.yaml -o applications/resources/cafe.yaml && redocly bundle applications/resources/cafe.yaml --config ./applications/remove-x-types.redocly.yaml -o applications/resources/cafe.yaml"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tatomyr/json-x-type.git"
},
"keywords": [
"json",
"types"
],
"author": "tatomyr",
"license": "ISC",
"bugs": {
"url": "https://github.com/tatomyr/json-x-type/issues"
},
"homepage": "https://github.com/tatomyr/json-x-type#readme",
"devDependencies": {
"@hyperjump/json-schema": "^1.9.9",
"@redocly/cli": "^2.14.5",
"@redocly/openapi-core": "^2.14.5",
"@vitest/coverage-v8": "^4.0.17",
"eslint": "^8.57.0",
"prettier": "^3.2.5",
"vitest": "^4.0.17"
}
}