-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
40 lines (40 loc) · 986 Bytes
/
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
{
"name": "multispinner",
"version": "0.2.1",
"description": "Multiple simultaneous async CLI spinners",
"main": "index.js",
"repository": "codekirei/node-multispinner",
"scripts": {
"test": "mocha",
"test-ci": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly",
"cover": "istanbul cover node_modules/mocha/bin/_mocha &> /dev/null && istanbul report text && rm -r ./coverage",
"dev": "mocha -w -R min",
"md": "pm2 start pen"
},
"keywords": [
"animation",
"stdout",
"terminal",
"cli",
"update",
"spinner"
],
"author": "",
"license": "MIT",
"dependencies": {
"chalk": "^1.1.1",
"figures": "^1.4.0",
"kind-of": "^2.0.1",
"lodash.clonedeep": "^3.0.2",
"lodash.merge": "^3.3.2",
"log-update": "^1.0.2"
},
"devDependencies": {
"chai": "^3.3.0",
"faker": "^3.0.1",
"istanbul": "^0.3.22",
"mocha": "^2.3.3",
"sinon": "^1.17.1",
"type-iterator": "^0.1.1"
}
}