forked from scotttesler/yodasay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) Β· 1 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
52
53
{
"name": "yodasay",
"version": "1.1.9",
"description": "yodasay is a configurable talking Star Wars character",
"keywords": [
"cow",
"cowsay",
"cowthink",
"talking",
"yoda",
"yodasay",
"yodathink",
"ASCII"
],
"homepage": "https://github.com/scotttesler/yodasay",
"author": {
"name": "Scott Tesler",
"email": "[email protected]",
"url": "https://github.com/scotttesler/"
},
"license": "MIT",
"main": "./index",
"bin": {
"yodasay": "./cli.js",
"yodathink": "./cli.js"
},
"files": [
"index.js",
"cli.js",
"cows/",
"lib/"
],
"repository": {
"type": "git",
"url": "https://github.com/scotttesler/yodasay.git"
},
"scripts": {
"test": "node test.js"
},
"dependencies": {
"get-stdin": "^6.0.0",
"optimist": "~0.6.1",
"string-width": "^3.0.0",
"strip-final-newline": "^2.0.0"
},
"devDependencies": {
"nodeunit": "^0.11.3"
},
"preferGlobal": true,
"engines": {
"node": ">= 4"
}
}