-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
66 lines (66 loc) · 1.5 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
{
"name": "differencify-jest-reporter",
"version": "0.0.4",
"description": "A Jest reporter for Differencify",
"main": "dist/index.js",
"scripts": {
"lint": "eslint .",
"prepare": "npm run build",
"build": "babel src --source-maps --out-dir dist --ignore '**/*.test.js'",
"pretest": "npm run lint",
"test": "jest"
},
"repository": {
"type": "git",
"url": "[email protected]:NimaSoroush/differencify-jest-reporter.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"keywords": [
"Perceptual diffing tool",
"Visual test",
"Nodejs",
"Chrome",
"ChromeHeadless",
"Puppeteer",
"Jest"
],
"author": "Nima Soroush",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-eslint": "^9.0.0",
"babel-jest": "^23.4.2",
"babel-preset-env": "^1.7.0",
"babel-preset-jest": "^23.2.0",
"eslint": "^5.5.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-prefer-object-spread": "^1.2.1",
"eslint-plugin-react": "7.11.0",
"jest": "^23.5.0",
"jest-cli": "^23.5.0"
},
"peerDependencies": {
"differencify": "1.4.4"
},
"dependencies": {
"chalk": "^2.4.1",
"fs": "0.0.2",
"pkg-dir": "2.0.0"
},
"jest": {
"rootDir": "src",
"transform": {
"^.+\\.js$": "babel-jest"
},
"testPathIgnorePatterns": [
"/node_modules/"
]
},
"engines": {
"node": ">=8.9"
}
}