-
-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 706 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 706 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
{
"name": "unicorn-fun-cli",
"version": "0.0.0",
"description": "My awesome command-line tool",
"license": "MIT",
"repository": "YOUR-GITHUB-USERNAME/unicorn-fun-cli",
"funding": "https://github.com/sponsors/YOUR-GITHUB-USERNAME",
"author": {
"name": "YOUR NAME",
"email": "YOUR EMAIL",
"url": "YOUR WEBSITE"
},
"type": "module",
"bin": {
"unicorn-fun": "./cli.js"
},
"engines": {
"node": ">=18"
},
"scripts": {
"test": "xo && ava"
},
"files": [
"cli.js"
],
"keywords": [
"cli",
"cli-app",
"unicorn",
"fun"
],
"dependencies": {
"meow": "^13.2.0",
"unicorn-fun": "^0.0.0"
},
"devDependencies": {
"ava": "^6.1.2",
"execa": "^8.0.1",
"xo": "^0.58.0"
}
}