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": "adjuster", "description": "validate and adjust input values", "version": "0.7.0", "author": "shimataro", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/shimataro/node-adjuster.git" }, "bugs": { "url": "https://github.com/shimataro/node-adjuster/issues" }, "homepage": "https://github.com/shimataro/node-adjuster#readme", "keywords": [ "param", "params", "parameter", "parameters", "validate", "validator", "ajust", "adjuster" ], "main": "./dist/index.js", "types": "./src/index.d.ts", "engines": { "node": ">= 4.0.0" }, "scripts": { "build": "babel src --out-dir dist --source-maps", "watch": "babel src --out-dir dist --source-maps --watch", "postinstall": "npm run build", "test": "NODE_PATH=./dist jest", "lint": "eslint src test --ext .es", "check-updates": "ncu" }, "devDependencies": { "babel-eslint": "8.2.3", "eslint": "4.19.1", "jest": "22.4.4", "npm-check-updates": "2.14.2" }, "dependencies": { "babel-cli": "6.26.0", "babel-core": "6.26.3", "babel-plugin-transform-decorators-legacy": "1.3.4", "babel-preset-env": "1.7.0" }, "jest": { "verbose": false, "moduleFileExtensions": [ "es", "js" ], "testRegex": "\\.(test|spec)\\.es$", "transform": { "\\.es$": "babel-jest" } }}