forked from SamVerschueren/listr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 1.46 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
81
82
{
"name": "listr",
"version": "0.14.3",
"description": "Terminal task list",
"license": "MIT",
"repository": "SamVerschueren/listr",
"author": {
"name": "Sam Verschueren",
"email": "sam.verschueren@gmail.com",
"url": "github.com/SamVerschueren"
},
"engines": {
"node": ">=10"
},
"scripts": {
"test": "clinton && xo && nyc ava",
"lint:staged": "lint-staged"
},
"files": [
"index.js",
"lib"
],
"keywords": [
"cli",
"task",
"list",
"tasklist",
"terminal",
"term",
"console",
"ascii",
"unicode",
"loading",
"indicator",
"progress",
"busy",
"wait",
"idle"
],
"dependencies": {
"@samverschueren/stream-to-observable": "^0.3.0",
"is-observable": "^2.0.0",
"is-promise": "^2.1.0",
"is-stream": "^1.1.0",
"listr-silent-renderer": "^1.1.1",
"listr-update-renderer": "^0.5.0",
"listr-verbose-renderer": "^0.6.0",
"p-map": "^2.0.0",
"rxjs": "^6.3.3"
},
"devDependencies": {
"ava": "*",
"clinton": "*",
"codecov": "^3.1.0",
"delay": "^4.1.0",
"elegant-spinner": "^1.0.1",
"hook-std": "^1.1.0",
"lint-staged": "^8.0.5",
"log-symbols": "^2.2.0",
"mockery": "^2.1.0",
"nyc": "^13.1.0",
"pre-commit": "^1.2.2",
"split": "^1.0.1",
"xo": "*",
"zen-observable": "^0.8.11"
},
"lint-staged": {
"*.js": "xo"
},
"pre-commit": "lint:staged",
"xo": {
"rules": {
"prefer-destructuring": "off",
"promise/prefer-await-to-then": "off"
}
},
"ava": {
"files": [
"!test/fixtures"
]
}
}