forked from zxcvbn-ts/zxcvbn
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 3.33 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"workspaces": [
"packages/languages/*",
"packages/libraries/*"
],
"private": true,
"name": "zxcvbn-ts",
"version": "4.4.2",
"description": "Realistic password strength estimation written in typescript",
"author": "zxcvbn-ts",
"license": "MIT",
"homepage": "https://github.com/zxcvbn-ts/zxcvbn",
"repository": {
"type": "git",
"url": "[email protected]:zxcvbn-ts/zxcvbn.git"
},
"files": [],
"prettier": "./prettier.js",
"scripts": {
"build": "lerna exec --parallel -- rollup -c ../../../scripts/rollup.config.mjs",
"lint": "eslint --ext .js,.ts --fix --cache .",
"typecheck": "tsc --noEmit",
"test": "jest --coverage",
"changed": "lerna changed",
"lerna-publish": "yarn build && lerna publish --conventional-commits -y",
"generate:languageData": "yarn start-ts-file ./data-scripts/generate.ts",
"generate:deduplicate": "yarn start-ts-file ./data-scripts/deduplicate.ts",
"wikipediaExtractor": "yarn start-ts-file ./data-scripts/wikiExtractor/index.ts ./data-scripts/extracts",
"start-ts-file": "node -r esbuild-register --unhandled-rejections=strict",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs"
},
"devDependencies": {
"@babel/cli": "7.22.9",
"@babel/core": "7.22.9",
"@babel/preset-env": "7.22.9",
"@rollup/plugin-alias": "5.0.0",
"@rollup/plugin-babel": "6.0.3",
"@rollup/plugin-commonjs": "25.0.2",
"@rollup/plugin-json": "6.0.0",
"@rollup/plugin-node-resolve": "15.1.0",
"@rollup/plugin-replace": "5.0.2",
"@rollup/plugin-typescript": "11.1.2",
"@types/byline": "4.2.33",
"@types/jest": "29.5.3",
"@types/sprintf-js": "1.1.2",
"@typescript-eslint/eslint-plugin": "6.0.0",
"@typescript-eslint/parser": "6.0.0",
"@vuepress/plugin-register-components": "2.0.0-beta.61",
"axios": "1.4.0",
"babel-eslint": "10.1.0",
"babel-jest": "29.6.1",
"babel-plugin-dynamic-import-node": "2.3.3",
"byline": "5.0.0",
"cross-fetch": "4.0.0",
"esbuild": "0.18.12",
"esbuild-register": "3.4.2",
"eslint": "8.44.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "8.8.0",
"eslint-import-resolver-alias": "1.1.2",
"eslint-import-resolver-webpack": "0.13.2",
"eslint-plugin-compat": "4.1.4",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jest": "27.2.3",
"eslint-plugin-prettier": "5.0.0",
"esm": "3.2.25",
"glob-all": "3.3.1",
"iconv-lite": "0.6.3",
"jest": "29.6.1",
"jszip": "^3.10.1",
"kuroshiro": "1.2.0",
"kuroshiro-analyzer-kuromoji": "1.1.0",
"lerna": "7.1.4",
"natural": "6.5.0",
"prettier": "3.0.0",
"rollup": "3.26.2",
"rollup-plugin-copy": "3.4.0",
"rollup-plugin-delete": "2.0.0",
"sprintf-js": "1.1.2",
"ts-jest": "29.1.1",
"typescript": "5.1.6",
"vuepress": "2.0.0-beta.61",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.0/xlsx-0.20.0.tgz",
"zxcvbn": "4.4.2"
},
"keywords": [
"password",
"passphrase",
"security",
"authentication",
"strength",
"meter",
"quality",
"estimation",
"pattern",
"cracking",
"scoring",
"entropy",
"bruteforce"
],
"resolutions": {
"minimist": "^1.2.8",
"http-cache-semantics": "^4.1.1",
"json5": "2.2.3",
"semver": "7.5.4"
},
"overrides": {},
"dependencies": {}
}