-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
37 lines (37 loc) · 952 Bytes
/
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
{
"name": "diceware-password-generator",
"version": "1.1.1",
"description": "A diceware based password generator",
"main": "index.js",
"scripts": {
"test": "mocha --reporter spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/password-diet/npm-diceware.git"
},
"keywords": [
"diceware",
"password",
"generator"
],
"devDependencies": {
"chai": "^3.2.0",
"js-combinatorics": "^0.5.0",
"lodash": "^3.10.1",
"mocha": "^2.2.5"
},
"author": "Csaba Okrona <[email protected]> (https://ochronus.com)",
"license": "ISC",
"bugs": {
"url": "https://github.com/password-diet/npm-diceware/issues"
},
"homepage": "https://github.com/password-diet/npm-diceware#readme",
"dependencies": {
"diceware-wordlist-en": "^1.0.0",
"diceware-wordlist-jp": "^1.0.1",
"diceware-wordlist-swe": "^1.0.1",
"lodash": "^3.10.1",
"secure-random": "^1.1.1"
}
}