-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 847 Bytes
/
package.json
File metadata and controls
50 lines (50 loc) · 847 Bytes
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
{
"name": "vaca",
"version": "4.0.0",
"description": "Get a random ASCII cow 🐮",
"license": "MIT",
"repository": "sindresorhus/vaca",
"funding": "https://github.com/sponsors/sindresorhus",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "https://sindresorhus.com"
},
"type": "module",
"bin": "./cli.js",
"exports": {
"types": "./index.d.ts",
"default": "./main.js"
},
"engines": {
"node": ">=20"
},
"scripts": {
"test": "xo && ava"
},
"files": [
"main.js",
"cli.js",
"index.d.ts"
],
"keywords": [
"cli-app",
"cli",
"cows",
"cow",
"vaca",
"list",
"array",
"random"
],
"dependencies": {
"cows": "^3.0.1",
"indent-string": "^5.0.0",
"meow": "^14.0.0",
"unique-random-array": "^4.0.0"
},
"devDependencies": {
"ava": "^6.4.1",
"xo": "^1.2.3"
}
}