is-bounded-number
Version:
Check if an input is numeric, and within a given bound
41 lines (40 loc) • 989 B
JSON
{
"name": "is-bounded-number",
"version": "1.2.8",
"description": "Check if an input is numeric, and within a given bound",
"author": {
"name": "David Ryan",
"email": "davidryan1998@hotmail.com",
"url": "https://github.com/davidryan59"
},
"main": "src/index.js",
"repository": "git@github.com:davidryan59/is-bounded-number.git",
"license": "ISC",
"scripts": {
"lint": "eslint src test examples",
"lint:fix": "eslint src test examples --fix",
"examples": "cd ./examples && node run.js",
"test": "nyc mocha ./test/*.spec.js",
"prepublishOnly": "npm run lint && npm run test"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^5.14.1",
"eslint-config-airbnb-es5": "^1.2.0",
"eslint-plugin-react": "^7.12.3",
"mocha": "^5.2.0",
"nyc": "^14.1.1"
},
"keywords": [
"bound",
"bounded",
"bounds",
"check",
"input",
"is",
"limit",
"limits",
"number",
"value"
]
}