-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
111 lines (111 loc) · 2.93 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
111
{
"name": "happo.io",
"version": "11.0.0",
"description": "Visual diffing for UI components",
"main": "./build/index.js",
"engines": {
"node": ">=16"
},
"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-azure-pipelines": "./bin/happo-ci-azure-pipelines",
"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",
"prepare": "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/preset-react": "^7.12.1",
"abort-controller": "^3.0.0",
"archiver": "^7.0.1",
"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",
"jose": "^5.4.1",
"jsdom": "^16.4.0",
"lcs-image-diff": "^2.0.0",
"node-fetch": "^2.6.6",
"parse-srcset": "^1.0.2",
"pngjs": "^3.4.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.24.8",
"@babel/core": "^7.25.2",
"@babel/eslint-parser": "^7.25.1",
"@babel/preset-env": "^7.25.2",
"adm-zip": "^0.4.13",
"babel-jest": "^27.4.5",
"babel-loader": "^9.1.0",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.6.0",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-react": "^7.34.3",
"file-loader": "^6.1.1",
"happo-plugin-puppeteer": "^1.3.2",
"http-server": "^14.1.1",
"jest": "^27.4.5",
"multiparty": "^4.2.2",
"prettier": "^3.3.2",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"webpack": "^5.2.0"
},
"peerDependencies": {
"babel-loader": "^7.0.0 || ^8.0.0 || ^9.0.0",
"webpack": "^3.5.5 || ^4.0.0 || ^5.0.0"
},
"packageManager": "yarn@1.22.22"
}