-
Notifications
You must be signed in to change notification settings - Fork 75
/
package.json
116 lines (116 loc) · 3.62 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
111
112
113
114
115
116
{
"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,.mjs,.ts --fix --cache .",
"typecheck": "tsc --noEmit",
"test": "jest --coverage",
"changed": "lerna changed",
"lerna-publish": "yarn build && lerna publish --conventional-commits -y",
"lerna-publish:beta": "yarn build && lerna publish premajor --preid beta --dist-tag beta -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.25.6",
"@babel/core": "7.25.2",
"@babel/preset-env": "7.25.4",
"@rollup/plugin-alias": "5.1.1",
"@rollup/plugin-babel": "6.0.4",
"@rollup/plugin-commonjs": "28.0.0",
"@rollup/plugin-json": "6.1.0",
"@rollup/plugin-node-resolve": "15.3.0",
"@rollup/plugin-replace": "6.0.1",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "12.1.0",
"@swc/core": "1.7.26",
"@swc/jest": "0.2.36",
"@types/byline": "4.2.36",
"@types/jest": "29.5.13",
"@types/sprintf-js": "1.1.4",
"@typescript-eslint/eslint-plugin": "8.8.0",
"@typescript-eslint/parser": "8.8.0",
"@vuepress/bundler-vite": "2.0.0-rc.17",
"@vuepress/plugin-register-components": "2.0.0-rc.52",
"@vuepress/theme-default": "2.0.0-rc.52",
"@zxcvbn-ts/dictionary-compression": "^2.0.0",
"axios": "1.7.7",
"byline": "5.0.0",
"cross-fetch": "4.0.0",
"esbuild": "0.24.0",
"esbuild-register": "3.6.0",
"eslint": "8.57.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-alias": "1.1.2",
"eslint-import-resolver-webpack": "0.13.9",
"eslint-plugin-compat": "6.0.1",
"eslint-plugin-import": "2.30.0",
"eslint-plugin-jest": "28.8.3",
"eslint-plugin-prettier": "5.2.1",
"esm": "3.2.25",
"glob-all": "3.3.1",
"iconv-lite": "0.6.3",
"jest": "29.7.0",
"jszip": "^3.10.1",
"kuroshiro": "1.2.0",
"kuroshiro-analyzer-kuromoji": "1.1.0",
"lerna": "8.1.8",
"natural": "8.0.1",
"prettier": "3.3.3",
"rollup": "4.23.0",
"rollup-plugin-copy": "3.5.0",
"rollup-plugin-delete": "2.1.0",
"sass-embedded": "1.79.4",
"sprintf-js": "1.1.3",
"typescript": "5.6.2",
"vuepress": "2.0.0-rc.17",
"vue-multiselect": "3.1.0",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.3/xlsx-0.20.3.tgz",
"yarn-audit-fix": "10.0.9",
"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": {}
}