-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.99 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@sbnc/jest-skip",
"version": "29.0.0",
"description": "Jest environment and test utilities to conditionally skip tests.",
"license": "MIT",
"keywords": [
"Jest",
"environment",
"skip",
"testing",
"tool"
],
"repository": {
"type": "git",
"url": "https://github.com/sbnc-eu/jest-skip"
},
"bugs": {
"url": "https://github.com/sbnc-eu/jest-skip/issues"
},
"homepage": "https://github.com/sbnc-eu/jest-skip#readme",
"author": {
"name" : "Bence Szalai",
"email" : "[email protected]",
"url" : "https://sbnc.eu/"
},
"scripts": {
"build": "yarn tsc:build && yarn rename",
"build:clean": "yarn clean && yarn tsc:build && yarn rename",
"tsc:build": "tsc --build tsconfig.esm.json --verbose && tsc --build tsconfig.cjs.json --verbose",
"tsc:build:clean": "tsc --build tsconfig.esm.json --clean && tsc --build tsconfig.cjs.json --clean",
"rename": "mv dist/esm/utilities.js dist/esm/utilities.mjs",
"clean": "rm -rf gen/* && rm -rf dist/* && rm -f tsconfig.esm.tsbuildinfo && rm -f tsconfig.cjs.tsbuildinfo"
},
"peerDependencies": {
"jest-environment-node": ">=24.8.0",
"jest-environment-jsdom": ">=24.8.0",
"jest-circus": ">=24.8.0"
},
"peerDependenciesMeta": {
"jest-environment-node": {
"optional": true
},
"jest-environment-jsdom": {
"optional": true
},
"jest-circus": {
"optional": true
}
},
"devDependencies": {
"jest-environment-node": "^29.0.0",
"jest-environment-jsdom": "^29.0.0",
"jest-circus": "^29.0.0",
"typescript": "^5.1.6"
},
"exports": {
"./node": {
"require": "./dist/cjs/node-environment.js",
"types": "./dist/cjs/node-environment.d.ts"
},
"./jsdom": {
"require": "./dist/cjs/jsdom-environment.js",
"types": "./dist/cjs/jsdom-environment.d.ts"
},
".": {
"import": "./dist/esm/utilities.mjs",
"require": "./dist/cjs/utilities.js",
"types": "./dist/esm/utilities.d.ts"
}
}
}