-
-
Notifications
You must be signed in to change notification settings - Fork 109
/
Copy pathpackage.json
78 lines (78 loc) · 1.57 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
{
"name": "listr",
"version": "0.12.0",
"description": "Terminal task list",
"license": "MIT",
"repository": "SamVerschueren/listr",
"author": {
"name": "Sam Verschueren",
"email": "[email protected]",
"url": "github.com/SamVerschueren"
},
"engines": {
"node": ">=4"
},
"scripts": {
"test": "clinton && xo && nyc ava",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"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": {
"chalk": "^1.1.3",
"cli-truncate": "^0.2.1",
"figures": "^1.7.0",
"indent-string": "^2.1.0",
"is-promise": "^2.1.0",
"is-stream": "^1.1.0",
"listr-silent-renderer": "^1.1.1",
"listr-update-renderer": "^0.2.0",
"listr-verbose-renderer": "^0.4.0",
"log-symbols": "^1.0.2",
"log-update": "^1.0.2",
"ora": "^0.2.3",
"p-map": "^1.1.1",
"rxjs": "^5.4.2",
"stream-to-observable": "^0.1.0",
"strip-ansi": "^3.0.1"
},
"devDependencies": {
"ava": "*",
"clinton": "*",
"coveralls": "^2.11.14",
"delay": "^1.3.1",
"hook-std": "^0.2.0",
"lint-staged": "^3.3.1",
"nyc": "^8.3.2",
"pre-commit": "^1.2.2",
"xo": "*",
"zen-observable": "^0.3.0"
},
"xo": {
"esnext": true
},
"lint-staged": {
"*.js": "xo"
},
"pre-commit": "lint:staged"
}