-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 915 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
38
39
40
41
42
43
{
"name": "cli-todo",
"description": "CLI to manage todos in a directory",
"version": "0.0.1",
"type": "module",
"license": "MIT",
"bin": {
"cli-todo": "index.js",
"todo": "index.js"
},
"author": {
"name": "Oliver Day",
"email": "[email protected]",
"url": "https://github.com/oliver-day"
},
"keywords": [
"cli-todo"
],
"files": [
"index.js",
"utils"
],
"scripts": {
"format": "prettier --write \"./**/*.{js,json}\""
},
"dependencies": {
"await-to-js": "^3.0.0",
"chalk": "^4.1.2",
"cli-alerts": "^1.2.2",
"cli-handle-error": "^4.4.0",
"cli-handle-unhandled": "^1.1.1",
"cli-meow-help": "^3.1.0",
"cli-should-cancel": "^1.0.3",
"cli-welcome": "^2.2.3",
"enquirer": "^2.4.1",
"lowdb": "^7.0.1",
"make-dir": "^5.0.0",
"meow": "^9.0.0"
},
"devDependencies": {
"prettier": "^3.2.5"
}
}