-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 836 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
{
"name": "tasklist-cli",
"version": "1.3.0",
"description": "Tasklist-cli is a simple and elegant command line application to manage tasks and todo lists",
"main": "lib/tasklist.js",
"repository": {
"type": "git",
"url": "https://github.com/manojuppala/tasklist-cli"
},
"scripts": {
"start": "node .",
"build": "tsc"
},
"keywords": [
"todo",
"cli",
"todo-list",
"tasklist-cli"
],
"author": "manoj uppala <[email protected]>",
"license": "MIT",
"dependencies": {
"chalk": "^4.1.2",
"inquirer": "^8.2.0",
"inquirer-date-prompt": "^2.0.1",
"nanospinner": "^1.0.0",
"yargs": "^17.3.1"
},
"bin": {
"task": "./lib/tasklist.js"
},
"devDependencies": {
"@types/inquirer": "^8.2.1",
"@types/yargs": "^17.0.8",
"typescript": "^4.5.5"
}
}