UNPKG

hs-password-validator

Version:
75 lines (74 loc) 1.52 kB
{ "version": "1.0.2", "license": "MIT", "main": "dist/index.js", "typings": "dist/index.d.ts", "files": [ "dist" ], "engines": { "node": ">=12" }, "scripts": { "start": "tsdx watch", "build": "tsdx build --colors", "test": "tsdx test", "lint": "tsdx lint src", "prepare": "tsdx build", "size": "size-limit", "analyze": "size-limit --why" }, "peerDependencies": {}, "husky": { "hooks": { "pre-commit": "tsdx lint" } }, "prettier": { "printWidth": 80, "semi": true, "singleQuote": true, "trailingComma": "es5" }, "name": "hs-password-validator", "author": "Henrique Souza", "module": "dist/hs-password-validator.esm.js", "keywords": [ "password", "validator", "rules", "schema", "validation", "check", "match" ], "repository": { "type": "git", "url": "git+https://github.com/henriquemod/hs-password-validator" }, "size-limit": [ { "path": "dist/hs-password-validator.cjs.production.min.js", "limit": "10 KB" }, { "path": "dist/hs-password-validator.esm.js", "limit": "10 KB" } ], "devDependencies": { "@size-limit/preset-small-lib": "7.0.8", "@types/chai": "4.3.1", "@types/ramda": "0.28.12", "chai": "4.3.6", "husky": "7.0.4", "size-limit": "7.0.8", "tsdx": "0.14.1", "tslib": "2.4.0", "typescript": "4.6.4" }, "dependencies": { "password-validator": "5.3.0", "ramda": "0.28.0" } }