UNPKG

passwise

Version:

A customizable React password strength checker library

82 lines (81 loc) 2.04 kB
{ "name": "passwise", "version": "0.1.5", "description": "A customizable React password strength checker library", "main": "dist/cjs/index.js", "module": "dist/esm/index.js", "types": "dist/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": "./dist/esm/index.js", "require": "./dist/cjs/index.js", "types": "./dist/index.d.ts" }, "./styles": "./dist/styles/index.css" }, "files": [ "dist", "LICENSE", "README.md", "src/styles" ], "sideEffects": false, "repository": { "url": "https://github.com/dipakbiswa/passwise" }, "scripts": { "build": "rollup -c --bundleConfigAsCjs", "test": "jest", "lint": "eslint src --ext .ts,.tsx", "typecheck": "tsc --noEmit", "prepare": "npm run build" }, "keywords": [ "react", "password", "strength", "meter", "zxcvbn", "validator", "typescript" ], "author": "", "license": "MIT", "peerDependencies": { "react": ">=17.0.0", "react-dom": ">=17.0.0" }, "dependencies": { "zxcvbn": "^4.4.2" }, "devDependencies": { "@rollup/plugin-commonjs": "^25.0.0", "@rollup/plugin-node-resolve": "^15.0.2", "@rollup/plugin-typescript": "^11.1.0", "@testing-library/jest-dom": "^5.16.5", "@testing-library/react": "^14.0.0", "@types/jest": "^29.5.1", "@types/node": "^20.2.3", "@types/react": "^18.2.6", "@types/react-dom": "^18.2.4", "@types/zxcvbn": "^4.4.2", "autoprefixer": "^10.4.14", "eslint": "^8.41.0", "jest": "^29.5.0", "jest-environment-jsdom": "^29.5.0", "postcss": "^8.4.23", "postcss-import": "^15.1.0", "react": "^18.2.0", "react-dom": "^18.2.0", "rollup": "^3.22.0", "rollup-plugin-dts": "^5.3.0", "rollup-plugin-peer-deps-external": "^2.2.4", "rollup-plugin-postcss": "^4.0.2", "rollup-plugin-terser": "^7.0.2", "tailwindcss": "^3.3.2", "ts-jest": "^29.1.0", "tslib": "^2.5.2", "typescript": "^5.0.4" } }