-
-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
88 lines (88 loc) · 1.93 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "jest-expect-message",
"version": "1.1.3",
"description": "Add custom message to Jest expects",
"main": "dist/index.js",
"types": "types/index.d.ts",
"files": [
"dist",
"types"
],
"scripts": {
"build": "babel src --out-dir dist --ignore 'src/**/*.test.js'",
"prepublishOnly": "yarn build",
"test": "jest",
"test:coverage": "yarn test --coverage",
"typecheck": "tsc --noEmit types/index.d.ts"
},
"keywords": [
"jest",
"expect",
"message",
"matchers",
"assertions",
"test"
],
"author": "Matt Phillips <[email protected]> mattphillips.io",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/mattphillips/jest-expect-message.git"
},
"bugs": {
"url": "https://github.com/mattphillips/jest-expect-message/issues"
},
"homepage": "https://github.com/mattphillips/jest-expect-message#readme",
"devDependencies": {
"@babel/cli": "^7.18.10",
"@babel/core": "^7.19.0",
"@babel/preset-env": "^7.19.0",
"@types/jest": "^29.0.0",
"jest": "^29.0.2",
"jest-extended": "^3.1.0",
"jest-serializer-ansi-escapes": "^2.0.1",
"typescript": "^4.8.2"
},
"babel": {
"ignore": [
"*.test.js"
],
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "14"
}
}
]
]
},
"jest": {
"testEnvironment": "node",
"testPathIgnorePatterns": [
".idea",
"examples",
"/node_modules/",
"/fixtures/",
"/dist/"
],
"coveragePathIgnorePatterns": [
"/node_modules/"
],
"snapshotFormat": {
"escapeString": false,
"printBasicPrototype": false
},
"snapshotSerializers": [
"jest-serializer-ansi-escapes"
],
"moduleNameMapper": {
"src/(.*)": "<rootDir>/src/$1"
},
"setupFilesAfterEnv": [
"jest-extended/all"
]
},
"dependencies": {}
}