-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 729 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 729 Bytes
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
{
"name": "jest-failfast",
"description": "Small package that allows Jest tests to fail in a more predictable way",
"version": "1.2.0",
"main": "src/jest-environment.js",
"scripts": {
"test": "jest"
},
"keywords": [
"jest",
"jest-environment"
],
"author": "Luca Salvarani <lucasalvarani99@gmail.com> (https://github.com/LukeSavefrogs)",
"repository": "github:LukeSavefrogs/jest-failfast",
"bugs": {
"url": "https://github.com/LukeSavefrogs/jest-failfast/issues",
"email": "lucasalvarani99@gmail.com"
},
"license": "ISC",
"devDependencies": {
"@types/jest": "^27.5.1",
"babel-jest": "^28.1.0",
"jest": "^28.1.0",
"ts-jest": "^28.0.2",
"ts-node": "^10.7.0"
}
}