-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1022 Bytes
/
package.json
File metadata and controls
49 lines (49 loc) · 1022 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
{
"name": "taskss",
"version": "0.3.0",
"description": "a todo terminal app",
"main": "index.js",
"dependencies": {
"chalk": "^2.4.2",
"configstore": "^4.0.0",
"inquirer": "^6.2.2",
"meow": "^5.0.0",
"update-notifier": "^2.5.0"
},
"devDependencies": {
"husky": "*",
"xo": "*"
},
"scripts": {
"fix": "xo --fix --prettier",
"prettier": "prettier --write *.js utils/* lib/*",
"format": "npm run prettier"
},
"bin": {
"taskss": "./cli.js"
},
"xo": {
"rules": {
"unicorn/no-process-exit": "off"
}
},
"author": "Malik Ammar Faisal",
"license": "GPL-3.0-only",
"directories": {
"lib": "lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ammarbinfaisal/taskss.git"
},
"bugs": {
"url": "https://github.com/ammarbinfaisal/taskss/issues"
},
"homepage": "https://github.com/ammarbinfaisal/taskss#readme",
"keywords": [
"todoapp",
"todo",
"terminal-based",
"terminal-app"
]
}