-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
51 lines (51 loc) · 1.08 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
{
"name": "picocolors",
"version": "1.1.1",
"main": "./picocolors.js",
"types": "./picocolors.d.ts",
"browser": {
"./picocolors.js": "./picocolors.browser.js"
},
"sideEffects": false,
"description": "The tiniest and the fastest library for terminal output formatting with ANSI colors",
"scripts": {
"test": "node tests/test.js"
},
"files": [
"picocolors.*",
"types.d.ts"
],
"keywords": [
"terminal",
"colors",
"formatting",
"cli",
"console"
],
"author": "Alexey Raspopov",
"repository": "alexeyraspopov/picocolors",
"license": "ISC",
"devDependencies": {
"ansi-colors": "^4.1.1",
"chalk": "^4.1.2",
"clean-publish": "^3.0.3",
"cli-color": "^2.0.0",
"colorette": "^2.0.12",
"kleur": "^4.1.4",
"mitata": "^1.0.10",
"nanocolors": "^0.2.12",
"prettier": "^3.3.3",
"yoctocolors": "^2.1.1"
},
"prettier": {
"printWidth": 100,
"useTabs": true,
"tabWidth": 2,
"semi": false,
"arrowParens": "avoid",
"requirePragma": true
},
"clean-publish": {
"cleanDocs": true
}
}