forked from jbcarpanelli/spinnies
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
64 lines (64 loc) · 1.3 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
{
"name": "dreidels",
"version": "0.5.2",
"description": "Create and manage multiple spinners in command-line interface programs",
"main": "index.js",
"files": [
"index.js",
"utils.js",
"purgeOptions.js",
"package.json",
"package-lock.json",
"spinners.json",
"README.md"
],
"scripts": {
"test": "npx mocha test"
},
"keywords": [
"node",
"nodejs",
"node.js",
"multiple",
"multi",
"multispinner",
"spinner",
"spinners",
"loadre",
"loading",
"loading-bar",
"cli",
"console",
"command-line",
"command",
"terminal"
],
"author": "Sweet MnM <[email protected]>",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:SweetMNM/dreidels.git"
},
"bugs": {
"url": "https://github.com/SweetMNM/dreidels/issues"
},
"homepage": "https://github.com/SweetMNM/dreidels#readme",
"license": "MIT",
"dependencies": {
"cli-cursor": "^3.0.0",
"is-observable": "^2.0.0",
"is-promise": "^2.1.0",
"signal-exit": "^3.0.2",
"strip-ansi": "^5.2.0",
"wordwrapjs": "^4.0.0",
"colorette": "^1.2.1"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^6.1.4",
"rxjs": "^6.5.3",
"sinon": "^7.4.1"
},
"optionalDependencies": {
"cli-spinners": "^2.2.0"
}
}