forked from happo/happo.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 2.9 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
108
109
110
{
"name": "happo.io",
"version": "6.8.0",
"description": "Visual diffing for UI components",
"main": "./build/index.js",
"engines": {
"node": ">=12"
},
"bin": {
"happo": "./build/cli.js",
"happo-ci-travis": "./bin/happo-ci-travis",
"happo-ci-circleci": "./bin/happo-ci-circleci",
"happo-ci-github-actions": "./bin/happo-ci-github-actions",
"happo-ci": "./bin/happo-ci"
},
"scripts": {
"update-toc": "./scripts/gh-md-toc --insert README.md",
"test": "jest --runInBand",
"lint": "eslint .",
"build": "rimraf build && babel src --ignore 'test/.*' --out-dir build --copy-files",
"prepublish": "yarn build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/happo/happo.io.git"
},
"keywords": [
"visual",
"diffing",
"ui",
"testing",
"snapshots"
],
"author": "Henric Trotzig",
"license": "MIT",
"bugs": {
"url": "https://github.com/happo/happo.io/issues"
},
"homepage": "https://github.com/happo/happo.io#readme",
"jest": {
"testEnvironment": "node",
"setupFilesAfterEnv": [
"./test/jestSetup.js"
],
"testMatch": [
"**/*-test.js*"
],
"testPathIgnorePatterns": [
"node_modules"
]
},
"prettier": {
"printWidth": 85,
"singleQuote": true,
"trailingComma": "all",
"arrowParens": "always"
},
"dependencies": {
"@babel/polyfill": "^7.12.1",
"@babel/preset-react": "^7.12.1",
"archiver": "^5.0.2",
"async-retry": "^1.3.1",
"babel-plugin-dynamic-import-node": "^2.1.0",
"commander": "^2.15.1",
"form-data": "^4.0.0",
"glob": "^7.1.2",
"https-proxy-agent": "^5.0.0",
"jsdom": "^16.4.0",
"jsonwebtoken": "^8.2.1",
"lcs-image-diff": "^2.0.0",
"node-fetch": "^2.6.6",
"parse-srcset": "^1.0.2",
"pngjs": "^3.4.0",
"prettier": "^2.2.0",
"require-relative": "^0.8.7",
"rimraf": "^3.0.0",
"source-map-support": "^0.5.9",
"string.prototype.matchall": "^4.0.0",
"supports-color": "^7.1.0"
},
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.5",
"@babel/eslint-parser": "^7.16.5",
"@babel/plugin-proposal-object-rest-spread": "^7.16.5",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.16.5",
"adm-zip": "^0.4.13",
"babel-jest": "^27.4.5",
"babel-loader": "^8.2.3",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jest": "^21.15.1",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"file-loader": "^6.1.1",
"happo-plugin-puppeteer": "^1.3.2",
"http-server": "^0.12.0",
"jest": "^27.4.5",
"multiparty": "^4.2.2",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"webpack": "^5.2.0"
},
"peerDependencies": {
"babel-loader": "^7.0.0 || ^8.0.0",
"webpack": "^3.5.5 || ^4.0.0 || ^5.0.0"
}
}