-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.2 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
{
"name": "jest-dot-http-files",
"version": "0.0.26",
"type": "module",
"description": "Jest transformer for .http files",
"scripts": {
"format": "clear && biome check --quote-style=single --semicolons=as-needed --arrow-parentheses=as-needed --json-formatter-indent-style=space --apply-unsafe .",
"lint": "clear && biome lint .",
"test": "NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" npx jest",
"test:watch": "NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" npx jest --watch"
},
"author": "Andre Vale <[email protected]>",
"license": "MIT",
"categories": ["Testing"],
"keywords": ["jest", "testing", "http"],
"repository": {
"url": "https://github.com/andreventuravale/jest-dot-http-files"
},
"devDependencies": {
"@biomejs/biome": "^1.6.4",
"date-fns": "^3.6.0",
"jest": "^29.7.0",
"jsonpath": "^1.1.1",
"lodash-es": "^4.17.21",
"node-fetch": "^3.3.2",
"testdouble": "^3.20.2"
},
"peerDependencies": {
"date-fns": "^3.6.0",
"jsonpath": "^1.1.1",
"lodash-es": "^4.17.21",
"node-fetch": "^3.3.2"
},
"exports": {
"./dependencies": "./dependencies.js",
"./transformer": "./transformer.js"
}
}