forked from zxcvbn-ts/zxcvbn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 3.19 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
{
"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": "git@github.com:zxcvbn-ts/zxcvbn.git"
},
"files": [],
"prettier": "./prettier.js",
"scripts": {
"build": "lerna exec --parallel -- rollup -c ../../../scripts/rollup.config.js",
"lint": "eslint --ext .js,.ts --fix --cache .",
"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 esm -r esbuild-register --unhandled-rejections=strict",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs"
},
"devDependencies": {
"@babel/cli": "7.18.10",
"@babel/core": "7.19.0",
"@babel/preset-env": "7.19.0",
"@rollup/plugin-alias": "3.1.9",
"@rollup/plugin-babel": "5.3.1",
"@rollup/plugin-commonjs": "22.0.2",
"@rollup/plugin-json": "4.1.0",
"@rollup/plugin-node-resolve": "14.0.1",
"@rollup/plugin-replace": "4.0.0",
"@rollup/plugin-typescript": "8.5.0",
"@types/byline": "4.2.33",
"@types/jest": "29.0.1",
"@types/natural": "5.1.1",
"@types/sprintf-js": "1.1.2",
"@typescript-eslint/eslint-plugin": "5.36.2",
"@typescript-eslint/parser": "5.36.2",
"@vuepress/plugin-register-components": "2.0.0-beta.49",
"axios": "0.27.2",
"babel-eslint": "10.1.0",
"babel-jest": "29.0.3",
"babel-plugin-dynamic-import-node": "2.3.3",
"byline": "5.0.0",
"cross-fetch": "3.1.5",
"esbuild": "0.15.7",
"esbuild-register": "3.3.3",
"eslint": "8.23.1",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "8.5.0",
"eslint-import-resolver-alias": "1.1.2",
"eslint-import-resolver-webpack": "0.13.2",
"eslint-plugin-compat": "4.0.2",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "27.0.4",
"eslint-plugin-prettier": "4.2.1",
"esm": "3.2.25",
"glob-all": "3.3.0",
"iconv-lite": "0.6.3",
"jest": "29.0.3",
"jszip": "^3.10.1",
"kuroshiro": "1.2.0",
"kuroshiro-analyzer-kuromoji": "1.1.0",
"lerna": "5.5.1",
"natural": "5.2.3",
"prettier": "2.7.1",
"rollup": "2.79.0",
"rollup-plugin-copy": "3.4.0",
"rollup-plugin-delete": "2.0.0",
"sprintf-js": "1.1.2",
"ts-jest": "29.0.0",
"typescript": "4.8.3",
"vuepress": "2.0.0-beta.49",
"xlsx": "0.18.5",
"zxcvbn": "4.4.2"
},
"keywords": [
"password",
"passphrase",
"security",
"authentication",
"strength",
"meter",
"quality",
"estimation",
"pattern",
"cracking",
"scoring",
"entropy",
"bruteforce"
],
"resolutions": {
"minimist": "^1.2.6"
},
"dependencies": {}
}