-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add src, README, and LICENSE to package files * Add src/index.js to package exports * Add jest >=25.5.0 to peer dependencies @jest/globals was born in 25.5.0 * Rename package to jest-ctx
- Loading branch information
Showing
2 changed files
with
15 additions
and
3 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,24 @@ | ||
{ | ||
"name": "jest-globals-ctx", | ||
"name": "jest-ctx", | ||
"version": "0.0.0", | ||
"description": "Pass context to jest hooks and tests", | ||
"author": "Ian Purvis <ian@purvisresearch.com>", | ||
"license": "MIT", | ||
"type": "module", | ||
"exports": "./src/index.js", | ||
"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" | ||
}, | ||
"devDependencies": { | ||
"jest": "^29.4.3" | ||
}, | ||
"peerDependencies": { | ||
"jest": ">=25.5.0" | ||
} | ||
} |