parse-ssn
Version:
Tiny utils to handle formatting, masking, and validating of US Social Security numbers.
66 lines (65 loc) • 1.6 kB
JSON
{
"name": "parse-ssn",
"version": "0.3.2",
"description": "Tiny utils to handle formatting, masking, and validating of US Social Security numbers.",
"source": "index.ts",
"main": "dist/parse-ssn.js",
"module": "dist/parse-ssn.es.js",
"unpkg": "dist/parse-ssn.umd.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "microbundle build",
"watch": "microbundle watch --compress false",
"test": "ava test.ts",
"format": "prettier-standard --format",
"lint": "prettier-standard --lint"
},
"husky": {
"hooks": {
"pre-commit": "prettier-standard --format --staged",
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/truework/parse-ssn.git"
},
"author": "estrattonbailey",
"license": "MIT",
"bugs": {
"url": "https://github.com/truework/parse-ssn/issues"
},
"homepage": "https://github.com/truework/parse-ssn#readme",
"keywords": [
"social security number",
"ssn",
"parser"
],
"devDependencies": {
"ava": "^2.4.0",
"commitizen": "^4.2.1",
"cz-conventional-changelog": "^3.3.0",
"husky": "^4.3.0",
"microbundle": "^0.11.0",
"prettier-standard": "^16.4.1",
"semantic-release": "^17.1.2",
"ts-node": "^8.4.1"
},
"ava": {
"compileEnhancements": false,
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}