Skip to main content
Module

x/value_schema/package.json

simple, easy-to-use, and declarative input validator; supports Node.js, TypeScript, Deno, and Bun
Go to Latest
File
{ "name": "value-schema", "description": "simple, easy-to-use, and declarative schema validator", "version": "3.1.2", "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": { "import": "./dist/index.mjs", "require": "./dist/index.js", "bun": "./dist-deno/index.ts", "default": "./dist/index.js" }, "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" }, "devDependencies": { "@babel/cli": "7.20.7", "@babel/core": "7.20.12", "@jest/globals": "29.3.1", "@types/node": "18.11.18", "@typescript-eslint/eslint-plugin": "5.48.0", "@typescript-eslint/parser": "5.48.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.31.0", "jest": "29.3.1", "markdownlint-cli": "0.33.0", "npm-check-updates": "16.6.2", "npm-run-all": "4.1.5", "ts-jest": "29.0.3", "typescript": "4.9.4", "yaml-lint": "1.7.0" }}