-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.11 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": "pretty-ansi",
"version": "3.0.0",
"description": "Convert ANSI escape sequences to human readable text",
"keywords": [
"pretty",
"ansi",
"escape",
"sequences",
"testing"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mrazauskas/pretty-ansi.git"
},
"funding": "https://github.com/sponsors/mrazauskas",
"license": "MIT",
"type": "module",
"exports": {
".": {
"import": "./index.js",
"require": "./index.cjs"
},
"./package.json": "./package.json"
},
"main": "./index.cjs",
"types": "./index.d.cts",
"files": [
"index.d.cts",
"index.d.ts",
"index.cjs",
"index.js"
],
"scripts": {
"check": "biome check --write",
"format": "biome format --write",
"test": "node --test",
"test:coverage": "mcr --config mcr.config.json -- npm run test",
"test:types": "tstyche"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"ansi-escapes": "7.0.0",
"ansi-styles": "6.2.1",
"monocart-coverage-reports": "2.11.5",
"tstyche": "3.4.0"
},
"engines": {
"node": ">=18"
}
}