-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
37 lines (37 loc) · 986 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": "yawg",
"version": "1.2.3",
"description": "Yet Another Word Generator - Node CLI to generate XKCD inspired passwords, using common English words that are easy to spell",
"repository": "https://github.com/angularsen/yawg",
"main": "lib.js",
"license": "MIT",
"keywords": [
"random",
"words",
"password",
"xkcd",
"phrase",
"generator",
"cli",
"util"
],
"author": {
"name": "Andreas Gullberg Larsen",
"email": "andreas.larsen84@gmail.com"
},
"dependencies": {
"chalk": "^2.4.0",
"debug": "^2.2.0",
"minimist": "^1.2.0",
"underscore": "^1.8.3"
},
"scripts": {
"major-release": "npm version major && git push && git push --tags && yarn publish",
"minor-release": "npm version minor && git push && git push --tags && yarn publish",
"patch-release": "npm version patch && git push && git push --tags && yarn publish",
"test": "node test.js"
},
"bin": {
"yawg": "app.js"
}
}