-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
35 lines (35 loc) · 905 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
{
"name": "jest-plugin-console-matchers",
"version": "2.9.0",
"description": "Adds jest matchers for watching console methods.",
"license": "MIT",
"author": "Mark Miyashita <[email protected]>",
"homepage": "https://github.com/negativetwelve/jest-plugins",
"repository": "https://github.com/negativetwelve/jest-plugins/tree/master/packages/jest-plugin-console-matchers",
"keywords": [
"console",
"jest",
"jest-plugin",
"matchers",
"plugin",
"specs",
"test"
],
"main": "build/matchers",
"files": [
"build",
"setup.js"
],
"peerDependencies": {
"jest": "*"
},
"devDependencies": {
"jest-plugin-action": "^2.9.0",
"jest-plugin-context": "^2.9.0"
},
"scripts": {
"build": "babel src --out-dir build --ignore '**/*.spec.js'",
"clean": "rimraf build",
"prepublishOnly": "yarn run clean && yarn run build"
}
}