forked from jest-community/jest-extended
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 2.55 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
{
"name": "jest-extended",
"version": "0.0.1",
"description": "Additional Jest matchers",
"main": "dist/index.js",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "babel src -d dist --ignore *.test.js",
"contributor": "all-contributors add",
"contributor:gen": "all-contributors generate",
"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 <[email protected]> (mattphillips.io)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/mattphillips/jest-extended.git"
},
"bugs": {
"url": "https://github.com/mattphillips/jest-extended/issues"
},
"homepage": "https://github.com/mattphillips/jest-extended#readme",
"devDependencies": {
"all-contributors-cli": "^4.5.1",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-jest": "^21.2.0",
"babel-jest-assertions": "^0.0.2",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"codecov": "^2.3.1",
"eslint": "^4.9.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jest": "^21.2.0",
"husky": "^0.14.3",
"jest": "^21.2.1",
"jest-each": "^0.3.1",
"lint-staged": "^4.3.0",
"prettier": "^1.7.4",
"pretty-format": "^21.2.1"
},
"dependencies": {
"chalk": "^2.2.0",
"expect": "^21.2.1",
"jest-matcher-utils": "^21.2.1"
},
"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
}
}
},
"babel": {
"plugins": [
"babel-plugin-transform-es2015-modules-commonjs",
"transform-object-rest-spread",
"babel-jest-assertions"
]
}
}