Skip to main content
Module

x/value_schema/package.json

simple, easy-to-use, and declarative input validator; supports Node.js, TypeScript, and Deno
Go to Latest
File
{ "name": "value-schema", "description": "simple, easy-to-use, and declarative schema validator", "version": "3.0.0-rc.5", "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" ], "main": "./dist/index", "types": "./dist/index.d.ts", "engines": { "node": ">=4.0.0", "npm": ">=3.8.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", "test": "jest --config jest.config.json", "verify": "run-p test lint", "lint": "run-p lint:*", "lint:ts": "eslint ./src ./test --ext .ts", "lint:md": "markdownlint . --ignore ./node_modules", "lint:yaml": "yamllint .*.yml *.yml --ignore=node_modules/**/*.yml --ignore=node_modules/**/*.yaml", "check-updates": "ncu" }, "devDependencies": { "@babel/cli": "7.8.4", "@babel/core": "7.9.6", "@types/jest": "25.2.2", "@types/node": "14.0.1", "@typescript-eslint/eslint-plugin": "2.33.0", "@typescript-eslint/parser": "2.33.0", "babel-plugin-add-module-exports": "1.0.2", "babel-plugin-module-extension-resolver": "1.0.0-rc.1", "case": "1.6.3", "cross-env": "7.0.2", "deno-module-extension-resolver": "0.1.0", "eslint": "7.0.0", "jest": "26.0.1", "markdownlint-cli": "0.23.0", "npm-check-updates": "6.0.1", "npm-run-all": "4.1.5", "ts-jest": "26.0.0", "typescript": "3.9.2", "yaml-lint": "1.2.4" }}