forked from fardog/node-xkcd-password
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.16 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
{
"name": "xkcd-password",
"version": "1.2.0",
"description": "Creates an XKCD-style password based on your parameters. Includes a CLI (xkcd-password) for your convenience, and a default wordlist. Supports both a callback-based API and Promises/A+.",
"main": "index.js",
"bin": {
"xkcd-password": "./bin/xkcd-password"
},
"scripts": {
"test": "grunt jshint test"
},
"repository": {
"type": "git",
"url": "git://github.com/fardog/node-xkcd-password.git"
},
"engines": {
"node": ">=0.10.22"
},
"keywords": [
"password",
"xkcd",
"words",
"random"
],
"author": "Nathan Wittstock <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/fardog/node-xkcd-password/issues"
},
"homepage": "https://github.com/fardog/node-xkcd-password",
"dependencies": {
"async": "^0.9.0",
"chalk": "^0.5.1",
"debug": "^2.0.0",
"minimist": "^1.1.0",
"random-lib": "^1.1.2",
"when": "^3.4.5"
},
"devDependencies": {
"grunt": "^0.4.4",
"grunt-cli": "^0.1.13",
"grunt-contrib-jshint": "^0.10.0",
"grunt-contrib-nodeunit": "^0.4.1",
"underscore": "^1.6.0"
}
}