-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
42 lines (42 loc) · 872 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
42
{
"name": "jest-plugin-must-assert",
"version": "2.1.0",
"description": "Jest plugin for async tests",
"main": "index.js",
"scripts": {
"test": "jest",
"harness": "node test-harness.js"
},
"engines": {
"node": ">= 12.17.0"
},
"keywords": [
"jest",
"test",
"async"
],
"author": "Arthur Buldauskas",
"license": "MIT",
"prettier": {
"singleQuote": true,
"trailingComma": "es5"
},
"jest": {
"testEnvironment": "jsdom",
"testRegex": "src/__tests__/.*|(\\.|/)(test|spec)\\.[jt]sx?$"
},
"devDependencies": {
"execa": "^1.0.0",
"jest": "^27.0.5",
"jest-circus": "^27.0.5",
"jest-cli": "^27.0.5",
"meow": "^10.0.1",
"prettier": "^1.16.4",
"strip-ansi": "^5.2.0",
"wait-for-expect": "^3.0.1"
},
"dependencies": {
"stack-utils": "^1.0.2",
"zone.js": "^0.9.0"
}
}