-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 967 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
{
"name": "jest-ctx",
"version": "1.0.1",
"description": "Pass context to jest hooks and tests",
"author": "Ian Purvis <ian@purvisresearch.com>",
"repository": {
"type": "git",
"url": "https://github.com/ianpurvis/jest-ctx.git"
},
"license": "MIT",
"type": "module",
"exports": {
"import": "./src/index.mjs",
"require": "./src/index.cjs",
"types": "./src/index.d.ts"
},
"files": [
"./src",
"./README.md",
"./LICENSE"
],
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test:debug": "node inspect --experimental-vm-modules node_modules/jest/bin/jest.js -- --runInBand",
"tsc": "tsc --module nodenext --noEmit --strict typespec/*.ts"
},
"devDependencies": {
"jest": "^29.4.3",
"typescript": "^5.0.2"
},
"peerDependencies": {
"jest": ">=25.5.0"
},
"keywords": [
"jest",
"context",
"test",
"testing",
"javascript"
]
}