-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.33 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
54
55
56
57
58
59
60
61
62
63
{
"name": "cowsayjs",
"version": "1.2.0",
"description": "A nodejs clone of the classic cowsay and cowthink cli commands",
"main": "lib/index.js",
"scripts": {
"start": "cli/moo.js",
"moo": "cli/moo.js",
"cowsay": "cli/cowsay.js",
"cowthink": "cli/cowthink.js",
"test": "mocha",
"mocha": "mocha",
"nyc": "nyc",
"tsc": "tsc",
"lint": "eslint"
},
"bin": {
"moojs": "cli/moo.js",
"cowsayjs": "cli/cowsay.js",
"cowthinkjs": "cli/cowthink.js"
},
"files": [
"cli/",
"cows/",
"lib/",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"engines": {
"node": "*"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/erincones/cowsayjs.git"
},
"keywords": [
"cowsay",
"cowthink",
"moo",
"cli",
"ascii",
"es5",
"custom",
"customizable"
],
"author": "Erick Rincones <erick.rincones@ciens.ucv.ve>",
"license": "MIT",
"bugs": {
"url": "https://github.com/erincones/cowsayjs/issues"
},
"homepage": "https://nextmoo.vercel.app/",
"devDependencies": {
"@types/mocha": "^9.1.1",
"@types/node": "^18.8.5",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"eslint": "^8.25.0",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"typescript": "^4.8.4"
}
}