-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.09 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
{
"name": "@stevescruz/task-master",
"version": "1.4.0",
"description": "A command-line todo list that allows you to write your tasks, set priorities, view existing tasks and view the next tasks due.",
"main": "src/index.js",
"publishConfig": {
"access": "public"
},
"bin": {
"@stevescruz/task-master": "./bin/task-master",
"task-master": "./bin/task-master"
},
"scripts": {
"test": "npx mocha './tests/**/*.js'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stevescruz/task-master.git"
},
"keywords": [
"cli",
"todolist",
"productivity",
"organization",
"command-line",
"task-master"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/stevescruz/task-master/issues"
},
"homepage": "https://github.com/stevescruz/task-master#readme",
"dependencies": {
"@inquirer/confirm": "0.0.13-alpha.0",
"chalk": "^4.1.0",
"commander": "^7.2.0",
"ncp": "^2.0.0"
},
"devDependencies": {
"expect": "^26.6.2",
"mocha": "^8.3.2"
},
"files": [
"bin/",
"src/"
]
}