forked from diracdeltas/niceware
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.28 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
{
"name": "niceware",
"version": "2.0.2",
"description": "Utility for generating memorable passwords and converting random bytes into human-readable phrases",
"keywords": [
"diceware",
"passphrase",
"password",
"generator",
"password generator",
"dictionary",
"crypto",
"cryptography",
"random",
"entropy",
"encryption"
],
"homepage": "http://www.github.com/diracdeltas/niceware",
"main": "lib/main.js",
"devDependencies": {
"browserify": "^16.5.0",
"jsdoc-to-markdown": "^7.0.1",
"standard": "^16.0.3",
"tape": "^4.13.2"
},
"scripts": {
"browsertest": "browserify test/*.js > testbundle.js && python3 -m http.server 8000 --bind 127.0.0.1",
"build": "browserify lib/main.js -o browser/niceware.js",
"lint": "standard",
"jsdoc": "jsdoc2md lib/main.js > docs/api.md",
"test": "tape test/**/*.js"
},
"standard": {
"ignore": [
"lib/wordlist.js",
"browser/niceware.js"
]
},
"author": "yan <[email protected]>",
"repository": {
"type": "git",
"url": "git://github.com/diracdeltas/niceware.git"
},
"license": "MIT",
"dependencies": {
"binary-search": "^1.3.6",
"randombytes": "^2.0.6"
},
"resolutions": {
"hosted-git-info": "3.0.8",
"underscore": "1.12.1"
}
}