UNPKG

password-meter

Version:

This password meter library is inspired by pointing system in http://www.passwordmeter.com/, in which the main purpose is to help the end users to have more stronger passwords.

83 lines 2.79 kB
{ "name": "password-meter", "version": "3.10.2", "description": "This password meter library is inspired by pointing system in http://www.passwordmeter.com/, in which the main purpose is to help the end users to have more stronger passwords.", "keywords": [ "password", "password meter", "password strength" ], "engines": { "node": ">=12", "npm": ">=6" }, "files": [ "dist/*", "docs/*" ], "main": "dist/index.cjs", "module": "dist/index.es.mjs", "browser": "dist/index.umd.js", "unpkg": "dist/index.umd.min.js", "types": "dist/index.d.ts", "typings": "dist/index.d.ts", "homepage": "https://github.com/HamedFathi/PasswordMeter", "bugs": { "url": "https://github.com/HamedFathi/PasswordMeter/issues" }, "license": "MIT", "author": "Hamed Fathi <hamedfathi.contact@gmail.com>", "repository": { "type": "git", "url": "https://github.com/HamedFathi/PasswordMeter" }, "scripts": { "lint": "eslint src test --quiet --fix --ignore-path .gitignore", "test": "jest", "build": "npm run clean-dist && rollup -c", "all": "npm run lint && npm run test && npm run build", "all-docs": "npm run lint && npm run test && npm run build && npm run typedoc", "coverage": "rimraf coverage && jest --coverage", "typedoc": "npm run clean-docs && typedoc --out docs src/index.ts", "watch": "rollup -cw", "clean": "rimraf dist coverage", "clean-dist": "rimraf dist", "clean-coverage": "rimraf coverage", "clean-docs": "rimraf docs" }, "devDependencies": { "@types/jsdom": "^16.2.13", "@types/jest": "^27.0.3", "@typescript-eslint/eslint-plugin": "^5.4.0", "@typescript-eslint/parser": "^5.4.0", "eslint": "^8.3.0", "eslint-config-prettier": "^8.3.0", "eslint-plugin-prettier": "^4.0.0", "husky": "^7.0.4", "jsdom": "^18.1.1", "jest": "^27.3.1", "ts-jest": "^27.0.7", "lint-staged": "^12.1.2", "prettier": "^2.5.0", "rimraf": "^3.0.2", "rollup": "^2.60.1", "rollup-plugin-terser": "^7.0.2", "rollup-plugin-typescript2": "^0.31.1", "source-map-support": "^0.5.21", "ts-node": "^10.4.0", "tslib": "^2.3.1", "typedoc": "^0.22.10", "typescript": "^4.5.2" }, "husky": { "hooks": { "pre-commit": "lint-staged" } }, "lint-staged": { "{src,test}/**/*.{js,ts,tsx}": [ "npm run lint", "git add" ] } }