is-valid-month
Version:
Check if a number is a valid month
36 lines (35 loc) • 641 B
JSON
{
"name": "is-valid-month",
"main": "index.js",
"version": "1.0.0",
"description": "Check if a number is a valid month",
"license": "MIT",
"repository": "bendrucker/is-valid-month",
"author": {
"name": "Ben Drucker",
"email": "bvdrucker@gmail.com",
"url": "bendrucker.me"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "standard && tape test.js"
},
"keywords": [
"month",
"valid",
"date"
],
"dependencies": {
"is-integer": "~1.0.4"
},
"devDependencies": {
"tape": "^4.0.0",
"standard": "^4.0.0"
},
"files": [
"index.js",
"readme.md"
]
}