forked from kien-ht/cypress-image-diff-html-report
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
115 lines (115 loc) · 3.42 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
112
113
114
115
{
"name": "cypress-image-diff-html-report",
"description": "A HTML reporting module for Cypress-Image-Diff to parse the JSON output to a beautiful report",
"version": "2.2.0",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"prepare": "husky install",
"format": "prettier . --write --list-different",
"lint": "eslint . --fix --max-warnings=0",
"start": "nodemon -w src/local-server -w src/common --exec node --loader ts-node/esm src/local-server/dev.ts",
"dev:ui": "vite dev --config src/ui/vite.config.js",
"build:ui:inline": "vite build --config src/ui/vite.config.js",
"build:ui:ci": "RUN_MODE=ci vite build --config src/ui/vite.config.js",
"build:server": "tsc",
"build": "run-s build:ui:inline build:ui:ci build:server",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --runInBand",
"type-check:ui": "vue-tsc --noEmit --project src/ui/tsconfig.json",
"type-check:rest": "tsc --noEmit",
"type-check": "run-s -c type-check:*"
},
"bin": "./bin/index.js",
"author": {
"name": "Kien Ha Trung",
"email": "[email protected]"
},
"keywords": [
"cypress",
"visual",
"testing",
"regression",
"comparison",
"html report"
],
"license": "MIT",
"dependencies": {
"cac": "^6.7.14",
"chalk": "^4.1.2",
"express": "^4.18.2",
"fs-extra": "^11.1.1",
"lodash": "^4.17.21",
"open": "^9.1.0",
"vue-router": "^4.3.2"
},
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@types/express": "^4.17.17",
"@types/fs-extra": "^11.0.2",
"@types/jest": "^29.5.5",
"@types/lodash": "^4.14.198",
"@types/mock-fs": "^4.13.2",
"@types/node": "^20.6.3",
"@types/nodemon": "^1.19.2",
"@types/supertest": "^2.0.13",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"@vitejs/plugin-vue": "^4.2.3",
"@vue/eslint-config-prettier": "^8.0.0",
"@vue/eslint-config-typescript": "^11.0.3",
"cross-env": "^7.0.3",
"element-plus": "^2.5.6",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-cypress": "^2.15.1",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"mock-fs": "^5.2.0",
"nodemon": "^3.0.1",
"npm-run-all": "^4.1.5",
"pinia": "^2.1.6",
"prettier": "^3.0.3",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"unplugin-auto-import": "^0.16.6",
"unplugin-vue-components": "^0.25.2",
"vite": "^4.4.5",
"vite-plugin-singlefile": "^0.13.5",
"vue": "^3.3.4",
"vue-tsc": "^1.8.5"
},
"repository": {
"type": "git",
"url": "https://github.com/kien-ht/cypress-image-diff-html-report.git"
},
"bugs": {
"url": "https://github.com/kien-ht/cypress-image-diff-html-report/issues"
},
"homepage": "https://github.com/kien-ht/cypress-image-diff-html-report#readme",
"type": "module",
"files": [
"dist/common",
"dist/local-server",
"dist/ui",
"*.ts",
"*.js"
],
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git",
"@semantic-release/github"
],
"preset": "angular"
}
}