forked from jest-community/jest-extended
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 2.64 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "jest-extended",
"version": "0.11.2",
"description": "Additional Jest matchers",
"main": "dist/index.js",
"types": "types/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE",
"types/index.d.ts"
],
"scripts": {
"build": "babel src -d dist --ignore *.test.js",
"lint": "eslint src",
"lint:fix": "yarn lint -- --fix",
"prepublishOnly": "yarn build",
"precommit": "lint-staged",
"prettier": "prettier 'src/**/*.js' --write --single-quote=true --print-width=120",
"test": "jest",
"test:coverage": "yarn test -- --coverage",
"test:report": "codecov",
"test:watch": "yarn test -- --watch"
},
"keywords": [
"jest",
"matchers",
"extend",
"extended",
"test",
"testing",
"assertions"
],
"author": "Matt Phillips <matt@mattphillips.io> (mattphillips.io)",
"license": "MIT",
"repository": "jest-community/jest-extended",
"devDependencies": {
"@types/jest": "^23.3.2",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-jest": "^23.0.1",
"babel-jest-assertions": "^0.1.0",
"babel-plugin-gwt": "^1.0.0",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"codecov": "^3.0.0",
"eslint": "^4.9.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jest": "^21.2.0",
"husky": "^0.14.3",
"import-all.macro": "^2.0.3",
"jest": "^23.0.1",
"jest-each": "^0.5.0",
"jest-watch-typeahead": "^0.2.0",
"lint-staged": "^6.0.0",
"prettier": "^1.7.4",
"pretty-format": "^22.1.0"
},
"dependencies": {
"expect": "^24.1.0",
"jest-get-type": "^22.4.3",
"jest-matcher-utils": "^22.0.0"
},
"lint-staged": {
"*.js": [
"yarn prettier",
"git add"
]
},
"jest": {
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/node_modules/",
"/fixtures/"
],
"coveragePathIgnorePatterns": [
"/node_modules/"
],
"snapshotSerializers": [
"pretty-format/build/plugins/convert_ansi.js"
],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"watchPlugins": [
"jest-watch-typeahead/filename",
"jest-watch-typeahead/testname"
]
},
"babel": {
"plugins": [
"babel-plugin-transform-es2015-modules-commonjs",
"transform-object-rest-spread",
"transform-async-to-generator",
"babel-jest-assertions",
"gwt",
"macros"
]
}
}