-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 943 Bytes
/
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
{
"name": "jest-serializer-ansi-escapes",
"version": "4.0.0",
"description": "Jest snapshot serializer for ANSI escape sequences",
"keywords": [
"ansi",
"escape",
"sequences",
"jest",
"snapshots",
"serializer",
"testing"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mrazauskas/jest-serializer-ansi-escapes.git"
},
"license": "MIT",
"funding": "https://github.com/sponsors/mrazauskas",
"type": "commonjs",
"main": "index.js",
"types": "index.d.ts",
"files": [
"index.d.ts",
"index.js"
],
"scripts": {
"check": "biome check --write",
"format": "biome format --write",
"test": "jest",
"test:coverage": "jest --collectCoverage"
},
"dependencies": {
"pretty-ansi": "^3.0.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"jest": "29.7.0",
"pretty-format": "29.7.0"
},
"engines": {
"node": ">=18"
}
}