-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
56 lines (56 loc) · 1.07 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
{
"name": "nanospinner",
"version": "1.2.2",
"description": "The simplest and tiniest terminal spinner for Node.js",
"keywords": [
"cli",
"console",
"spinner",
"terminal",
"loading"
],
"author": "Usman Yunusov",
"license": "MIT",
"repository": "usmanyunusov/nanospinner",
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"scripts": {
"build": "tsc",
"unit": "uvu test .test.js$",
"test": "c8 pnpm unit",
"format": "prettier --write src",
"publish": "clean-publish"
},
"dependencies": {
"picocolors": "^1.1.1"
},
"devDependencies": {
"@types/node": "^22.8.4",
"c8": "^10.1.2",
"clean-publish": "^5.1.0",
"prettier": "^3.3.3",
"typescript": "^5.6.3",
"uvu": "^0.5.6"
},
"files": [
"dist"
],
"benchmarkDependencies": {
"ora": "^6.0.1"
},
"clean-publish": {
"cleanDocs": true
},
"prettier": {
"printWidth": 100,
"semi": false,
"singleQuote": true
},
"c8": {
"exclude": [
"**/*.test.*"
],
"lines": 75,
"check-coverage": true
}
}