forked from keindev/tasktree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.47 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "tasktree-cli",
"version": "3.0.1",
"description": "Simple terminal task tree - helps you keep track of your tasks in a tree structure.",
"homepage": "https://github.com/keindev/tasktree#readme",
"license": "MIT",
"author": "Daniil Ryazanov <opensource@tagproject.ru>",
"keywords": [
"cli",
"task",
"tree",
"terminal",
"term",
"console",
"ascii",
"loading",
"indicator",
"progress",
"busy",
"wait",
"idle"
],
"main": "lib/TaskTree.js",
"types": "lib/TaskTree.d.ts",
"module": "lib/TaskTree.js",
"repository": {
"type": "git",
"url": "https://github.com/keindev/tasktree.git"
},
"bugs": {
"url": "https://github.com/keindev/tasktree/issues"
},
"scripts": {
"check:lint": "eslint src/**/*.ts --fix",
"check:spell": "cspell -c .vscode/cspell.json --no-summary \"*.*\" \"**/*.ts\" \"**/*.js\"",
"check:test": "npm test",
"build": "npm-run-all prepare:* check:* build:*",
"build:ghinfo": "ghinfo generate -d media -t utils",
"build:ts": "tsc",
"prepare": "tsc",
"prepare:clean": "rimraf lib coverage",
"test": "jest --coverage --notify",
"util:changelog": "changelog generate",
"util:commit-msg": "changelog lint --message HUSKY_GIT_PARAMS --lowercase-only",
"util:pre-commit": "npm-run-all check:*"
},
"engines": {
"node": ">=10.0.0"
},
"dependencies": {
"chalk": "^4.0.0",
"color-convert": "^2.0.1",
"elegant-spinner": "^2.0.0",
"figures": "^3.2.0",
"stdout-update": "^1.4.1"
},
"devDependencies": {
"@types/color-convert": "^1.9.0",
"@types/jest": "^25.2.1",
"@types/node": "^13.13.4",
"@typescript-eslint/eslint-plugin": "^2.30.0",
"@typescript-eslint/parser": "^2.30.0",
"changelog-guru": "^1.0.0",
"cspell": "^4.0.57",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.8.2",
"ghinfo": "^1.0.6",
"husky": "^4.2.5",
"jest": "^25.5.4",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"strip-ansi": "^6.0.0",
"ts-jest": "^25.4.0",
"typescript": "^3.8.3"
}
}