-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.62 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.62 KB
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
{
"name": "see-image-diff",
"version": "0.1.17",
"description": "Image comparison tool with a nice UI and diff features.",
"default": "dist/index.html",
"scripts": {
"clean": "rimraf dist temp",
"build-ci": "NODE_ENV=production node ./scripts/buildApp.js",
"build": "NODE_ENV=production parcel build --dist-dir dist web/index.html --no-source-maps",
"start": "parcel serve web/index.html",
"eslint": "eslint web tests",
"eslint-fix": "eslint web --fix",
"test": "SEE_IMAGE_DIFF_NODE_ENV=test jest tests --runInBand",
"release": "release-please release-pr --repo-url=https://github.com/RaviDasari/see-image-diff"
},
"keywords": [
"image",
"compare",
"screenshot",
"comparison",
"diff"
],
"bin": {
"see-image-diff": "bin.js"
},
"author": "Ravi Dasari",
"license": "MIT",
"engines": {
"node": ">=20.0.0"
},
"devDependencies": {
"@babel/core": "^7.28.5",
"@babel/preset-env": "^7.28.5",
"@babel/preset-react": "^7.28.5",
"@elastic/datemath": "^5.0.3",
"@elastic/eui": "95.12.0",
"@emotion/css": "^11.13.5",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@parcel/transformer-sass": "^2.16.0",
"@types/jest": "^29.5.14",
"@types/react": "^18.3.26",
"@types/react-dom": "^18.3.7",
"axios": "1.13.1",
"bluebird": "^3.7.2",
"eslint": "^8.57.1",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.6.0",
"eslint-plugin-react": "^7.37.5",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-image-snapshot": "^6.5.1",
"jest-junit": "^16.0.0",
"jest-serializer-html": "^7.1.0",
"node-cmd": "^5.0.0",
"parcel": "^2.16.0",
"puppeteer": "^24.27.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-on-screen": "^2.1.1",
"react-spring": "^9.7.5",
"react-stack-grid": "^0.7.1",
"release-please": "^17.1.3",
"rimraf": "^6.1.0",
"sass": "^1.93.3",
"static-server": "^3.0.0",
"typescript": "^5.9.3"
},
"dependencies": {
"chalk": "^4.1.2",
"command-line-args": "^6.0.1",
"command-line-usage": "^7.0.3",
"jimp": "^1.6.0",
"lodash": "^4.17.21",
"log-symbols": "^7.0.1",
"moment": "^2.30.1",
"ncp": "^2.0.0",
"node-emoji": "^2.2.0",
"p-settle": "^5.2.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RaviDasari/see-image-diff.git"
},
"bugs": {
"url": "https://github.com/RaviDasari/see-image-diff/issues"
},
"homepage": "https://github.com/RaviDasari/see-image-diff#readme"
}