-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
82 lines (82 loc) · 2.4 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
75
76
77
78
79
80
81
82
{
"name": "value-schema",
"description": "simple, easy-to-use, and declarative schema validator",
"version": "4.0.0",
"author": "shimataro",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/shimataro/value-schema.git"
},
"bugs": {
"url": "https://github.com/shimataro/value-schema/issues"
},
"homepage": "https://github.com/shimataro/value-schema#readme",
"publishConfig": {
"access": "public"
},
"keywords": [
"param",
"params",
"parameter",
"parameters",
"validate",
"validator",
"ajust",
"adjuster",
"revise",
"revisor",
"schema",
"JSON schema"
],
"exports": {
"bun": "./dist-deno/index.ts",
"deno": "./dist-deno/index.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"default": "./dist/index.mjs"
},
"main": "./dist/index",
"types": "./dist/index.d.ts",
"engines": {
"node": ">=4.0.0"
},
"scripts": {
"build": "run-s build:*",
"build:1-esm": "run-s build:1-esm:*",
"build:1-esm:1-tsc": "tsc -p tsconfig.esm.json",
"build:1-esm:2-babel": "cross-env BABEL_ENV=esm babel ./dist --out-dir ./dist --out-file-extension .mjs",
"build:2-cjs": "run-s build:2-cjs:*",
"build:2-cjs:1-tsc": "tsc -p tsconfig.cjs.json",
"build:2-cjs:2-babel": "cross-env BABEL_ENV=cjs babel ./dist --out-dir ./dist --extensions .js",
"build:3-deno": "deno-module-extension-resolver ./src ./dist-deno",
"test": "jest",
"verify": "run-p test lint",
"lint": "run-p lint:*",
"lint:ts": "eslint ./src ./test --ext .ts",
"lint:md": "markdownlint . --ignore ./node_modules --ignore ./**/node_modules",
"lint:yaml": "yamllint {,.github/{,**/}}*.{yml,yaml}",
"check-updates": "ncu -x eslint"
},
"devDependencies": {
"@babel/cli": "7.26.4",
"@babel/core": "7.26.0",
"@jest/globals": "29.7.0",
"@types/node": "22.10.2",
"@typescript-eslint/eslint-plugin": "8.19.0",
"@typescript-eslint/parser": "8.19.0",
"babel-plugin-add-module-exports": "1.0.4",
"babel-plugin-module-extension-resolver": "1.0.0",
"case": "1.6.3",
"cross-env": "7.0.3",
"deno-module-extension-resolver": "1.0.0",
"eslint": "8.57.0",
"jest": "29.7.0",
"markdownlint-cli": "0.43.0",
"npm-check-updates": "17.1.13",
"npm-run-all": "4.1.5",
"ts-jest": "29.2.5",
"typescript": "5.7.2",
"yaml-lint": "1.7.0"
}
}