-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
51 lines (51 loc) · 1.31 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
{
"name": "xkcd-password",
"version": "2.0.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.js"
},
"scripts": {
"test": "tape test/*.js && npm run lint",
"lint": "npm run prettier-validate && npm run eslint",
"prettier-validate": "prettier --list-different **/*.js",
"eslint": "eslint ."
},
"repository": {
"type": "git",
"url": "git://github.com/fardog/node-xkcd-password.git"
},
"engines": {
"node": ">=6"
},
"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": "^2.1.4",
"chalk": "^1.1.3",
"minimist": "^1.1.0",
"random-lib": "^2.1.0",
"when": "^3.4.5"
},
"devDependencies": {
"eslint": "^5.2.0",
"eslint-config-prettier": "^2.9.0",
"prettier": "^1.13.7",
"tape": "^4.6.3",
"underscore": "^1.6.0"
},
"prettier": {
"semi": false
}
}