-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
61 lines (61 loc) · 1.78 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
{
"name": "fast-password-entropy",
"version": "1.1.1",
"description": "Calculate the entropy of a password string, but fast!",
"keywords": [
"password",
"string",
"entropy",
"strength"
],
"license": "MIT",
"author": "Gabriel Montes <gabriel@bloq.com>",
"files": [
"dist",
"src"
],
"main": "src/index.js",
"browser": "es5/index.js",
"repository": "autonomoussoftware/fast-password-entropy",
"scripts": {
"bench": "node benchmark/index.js",
"build": "babel -d es5/ src/",
"check": "npm-check -p -i eslint*",
"coverage": "nyc --lines 95 --functions 95 --branches 95 --reporter=lcov --reporter=text npm test",
"lint": "eslint --cache .",
"precommit": "npm run lint",
"prepublishOnly": "npm run build && npm run precommit && npm run prepush && tag-matches",
"prepush": "npm run check && npm run coverage",
"test": "mocha"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"benchmark": "^2.1.4",
"chai": "^4.2.0",
"check-tag-matches": "^1.0.0",
"eslint": "^5.16.0",
"eslint-config-bloq": "^2.1.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsdoc": "^4.8.3",
"eslint-plugin-node": "^9.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-require-path-exists": "^1.1.9",
"eslint-plugin-standard": "^4.0.0",
"husky": "^2.2.0",
"microtime": "^3.0.0",
"mocha": "^6.1.4",
"npm-check": "^5.9.0",
"nyc": "^14.1.0",
"passwd-strength": "^1.1.0",
"password-entropy": "0.0.3",
"password-strength": "0.0.1",
"random-words": "^1.1.0",
"randomstring": "^1.1.5",
"string-entropy": "0.0.2",
"tai-password-strength": "^1.1.1"
},
"preferGlobal": false,
"private": false
}