-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
93 lines (93 loc) · 2.67 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
{
"name": "see-image-diff",
"version": "0.1.16",
"description": "Image comparison tool with a nice UI and diff features.",
"main": "index.html",
"default": "dist/index.html",
"scripts": {
"clean": "rimraf dist temp",
"build-ci": "NODE_ENV=production node ./scripts/buildApp.js",
"build": "NODE_ENV=production parcel build --out-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": "standard-version"
},
"keywords": [
"image",
"compare",
"screenshot",
"comparison",
"diff"
],
"bin": {
"see-image-diff": "bin.js"
},
"author": "Ravi Dasari",
"license": "MIT",
"devDependencies": {
"@elastic/datemath": "^5.0.3",
"@elastic/eui": "^25.0.0",
"@types/jest": "^26.0.0",
"@types/react": "^16.4.9",
"@types/react-dom": "^16.0.7",
"ava": "^0.25.0",
"axios": "^0.19.0-beta.1",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"bluebird": "^3.7.2",
"eslint": "^7.1.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.21.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-standard": "^4.0.1",
"jest": "^26.0.1",
"jest-environment-jsdom-sixteen": "1.0.3",
"jest-image-snapshot": "^4.0.2",
"jest-junit": "^10.0.0",
"jest-serializer-html": "6.0.0",
"node-cmd": "^3.0.0",
"node-sass": "^4.9.2",
"parcel": "^2.0.0-alpha.3.2",
"parcel-bundler": "latest",
"parcel-plugin-static-files-copy": "^2.3.1",
"puppeteer": "^4.0.0",
"react": "16.x",
"react-dom": "^16.4.2",
"react-on-screen": "^2.1.1",
"react-spring": "^9.0.0-rc.3",
"react-stack-grid": "^0.7.1",
"react-vertical-timeline": "^0.2.0",
"rimraf": "^3.0.2",
"sass": "^1.26.5",
"standard-version": "^8.0.0",
"static-server": "^2.2.1",
"tslint": "^5.11.0",
"tslint-react": "^3.6.0",
"typescript": "^3.0.1",
"xo": "^0.22.0"
},
"dependencies": {
"node-emoji": "^1.10.0",
"log-symbols": "^4.0.0",
"chalk": "^4.0.0",
"command-line-args": "^5.1.1",
"command-line-usage": "^6.1.0",
"jimp": "^0.12.1",
"lodash": "^4.17.15",
"moment": "^2.26.0",
"ncp": "^2.0.0",
"p-settle": "^4.1.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"
}