-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
81 lines (81 loc) · 1.87 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
{
"name": "jest-chain",
"version": "1.1.6",
"description": "Chain Jest matchers together to create one powerful assertion",
"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",
"matchers",
"assertions",
"chain",
"chainable",
"expect",
"test"
],
"author": "Matt Phillips <matt@mattphillips.io> (mattphillips.io)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/mattphillips/jest-chain.git"
},
"bugs": {
"url": "https://github.com/mattphillips/jest-chain/issues"
},
"homepage": "https://github.com/mattphillips/jest-chain#readme",
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.19.3",
"@babel/plugin-transform-modules-commonjs": "^7.18.6",
"@types/jest": "^29.0.3",
"jest": "^29.1.1",
"jest-extended": "^3.1.0",
"jest-serializer-ansi-escapes": "^2.0.1",
"typescript": "^4.8.4"
},
"babel": {
"ignore": [
"*.test.js"
],
"plugins": [
"@babel/plugin-transform-modules-commonjs"
]
},
"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"
]
}
}