forked from TopCli/Spinner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.58 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
{
"name": "@topcli/spinner",
"version": "1.1.0",
"description": "Asynchronous CLI Spinner. Allow to create and manage simultaneous/multiple spinners at a time.",
"type": "module",
"exports": "./index.js",
"scripts": {
"prepublishOnly": "pkg-ok",
"test": "cross-env esm-tape-runner 'test/**/*.js' | tap-monkey",
"coverage": "c8 -r html npm test",
"lint": "cross-env eslint index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TopCli/Spinner.git"
},
"keywords": [
"CLI",
"SlimIO",
"multiple",
"simultaneous",
"async",
"asynchronous",
"spinner",
"spinners",
"ora",
"listr",
"terminal",
"term",
"console",
"progress"
],
"files": [
"index.js",
"index.d.ts",
"src"
],
"author": "GENTILHOMME Thomas <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/TopCli/Spinner/issues"
},
"homepage": "https://github.com/TopCli/Spinner#readme",
"dependencies": {
"@slimio/is": "^1.5.0",
"@topcli/wcwidth": "^1.0.1",
"ansi-regex": "^6.0.1",
"cli-cursor": "^4.0.0",
"cli-spinners": "^2.7.0",
"kleur": "^4.1.5",
"strip-ansi": "^7.0.1"
},
"devDependencies": {
"@nodesecure/eslint-config": "^1.6.0",
"@small-tech/esm-tape-runner": "^2.0.0",
"@small-tech/tap-monkey": "^1.4.0",
"c8": "^7.12.0",
"cross-env": "^7.0.2",
"eslint": "^8.31.0",
"pkg-ok": "^3.0.0",
"tape": "^5.6.1"
},
"engines": {
"node": ">=16"
}
}