You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
898 B
JSON
37 lines
898 B
JSON
{
|
|
"name": "pincode-validator",
|
|
"version": "1.0.4",
|
|
"description": "A simple regex based validator for PIN codes in India",
|
|
"main": "src/index.js",
|
|
"directories": {
|
|
"test": "tests"
|
|
},
|
|
"scripts": {
|
|
"test": "node tests/validate.js",
|
|
"browserify": "browserify --transform brfs --outfile pincode-regex.js -s Pincode src/index.js"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/captn3m0/india-pincode-regex.git"
|
|
},
|
|
"keywords": [
|
|
"india",
|
|
"pincode",
|
|
"regex",
|
|
"validator",
|
|
"PIN"
|
|
],
|
|
"author": "Nemo <npm@captnemo.in>",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/captn3m0/india-pincode-regex/issues"
|
|
},
|
|
"homepage": "https://github.com/captn3m0/india-pincode-regex#readme",
|
|
"devDependencies": {
|
|
"brfs": "^2.0.2",
|
|
"browserify": "^16.5.1",
|
|
"regexgen": "^1.3.0"
|
|
},
|
|
"dependencies": {}
|
|
}
|