forked from diracdeltas/niceware
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.43 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
{
"name": "niceware",
"version": "1.0.4",
"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": "^13.1.1",
"coveralls": "^2.11.15",
"flow-bin": "^0.35.0",
"istanbul": "^0.4.5",
"jsdoc-to-markdown": "^2.0.1",
"nsp": "^2.6.2",
"standard": "^8.1.0",
"tape": "^4.6.3"
},
"scripts": {
"browsertest": "browserify test/*.js > testbundle.js && python -m SimpleHTTPServer",
"build": "browserify lib/main.js -o browser/niceware.js",
"check": "nsp check",
"coverage": "istanbul cover tape test/**/*.js --report lcovonly -- -R spec",
"lint": "standard",
"jsdoc": "jsdoc2md lib/main.js > docs/api.md",
"flow": "flow; test $? -eq 0 -o $? -eq 2",
"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.2",
"randombytes": "^2.0.3"
}
}