forked from dropbox/zxcvbn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.51 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
{
"name": "@caesar-team/zxcvbn-lightweight",
"scope": "@caesar-team",
"version": "4.5.2",
"description": "realistic password strength estimation",
"author": "Dan Wheeler",
"license": "MIT",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/caesar-team/zxcvbn-lightweight"
},
"prettier": "./prettier.js",
"scripts": {
"build": "rm -rf dist && rollup -c && tsc --emitDeclarationOnly",
"demo": "npm run build && npx copyfiles -f dist/index.js demo && npx move-cli demo/index.js demo/zxcvbn.js && http-server demo",
"lint": "eslint --ext .js --fix --cache .",
"test": "jest",
"release:build": "npm run build && standard-version",
"release:major": "release:build",
"release:path": "npm run release:build --release-as path",
"release:minor": "npm run release:build --release-as minor",
"publish": "npm publish --access public",
"release:dry": "standard-version --dry-run"
},
"devDependencies": {
"@babel/cli": "7.12.10",
"@babel/core": "7.12.10",
"@babel/eslint-parser": "7.12.1",
"@babel/preset-env": "7.12.11",
"@rollup/plugin-alias": "3.1.1",
"@rollup/plugin-babel": "5.2.2",
"@rollup/plugin-commonjs": "17.0.0",
"@rollup/plugin-node-resolve": "11.0.1",
"@rollup/plugin-replace": "2.3.4",
"@rollup/plugin-typescript": "8.1.0",
"@types/jest": "26.0.19",
"@typescript-eslint/eslint-plugin": "4.11.0",
"@typescript-eslint/parser": "4.11.0",
"babel-jest": "26.6.3",
"babel-plugin-dynamic-import-node": "2.3.3",
"eslint": "7.16.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-config-prettier": "7.1.0",
"eslint-friendly-formatter": "4.0.1",
"eslint-plugin-compat": "3.9.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jest": "24.1.3",
"eslint-plugin-prettier": "3.3.0",
"http-server": "^0.12.3",
"jest": "26.6.3",
"prettier": "2.2.1",
"rollup": "2.35.1",
"rollup-plugin-copy": "3.3.0",
"rollup-plugin-delete": "2.0.0",
"standard-version": "^9.0.0",
"ts-jest": "26.4.4",
"jest-cli": "^26.6.3",
"typescript": "4.1.3",
"tslib": "^2.0.3"
},
"keywords": [
"password",
"passphrase",
"security",
"authentication",
"strength",
"meter",
"quality",
"estimation",
"pattern",
"cracking",
"scoring",
"entropy",
"bruteforce"
],
"publishConfig": {
"registry": "https://npm.pkg.github.com/caesar-team"
},
"directories": {
"test": "test"
},
"files": [
"dist"
]
}