forked from bermi/password-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 942 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
38
39
40
41
42
43
44
45
{
"name": "password-generator",
"version": "2.1.0",
"description": "Memorable password generator. For the command line, Node.js and the browser.",
"author": "Bermi Ferrer <[email protected]>",
"keywords": [
"password",
"generator",
"pass",
"random",
"browser",
"crypto",
"security"
],
"bugs": {
"web": "http://github.com/bermi/password-generator/issues"
},
"licenses": [
{
"type": "MIT",
"url": "http://opensource.org/licenses/mit-license.php"
}
],
"repository": {
"type": "git",
"url": "git://github.com/bermi/password-generator.git"
},
"dependencies": {
"optimist": "0.6.1"
},
"devDependencies": {
"expect.js": "0.2.0",
"grunt": "0.3.17",
"mocha": "2.2.5"
},
"scripts": {
"test": "make test"
},
"typings": "index.d.ts",
"main": "index",
"bin": "./bin/password-generator",
"directories": {
"lib": "./lib"
}
}