-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
41 lines (41 loc) · 1.14 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
{
"name": "cypress-diff",
"version": "0.0.6",
"description": "The library highlights the difference between the expected and actual values in the Cypress Test Runner UI.",
"main": "./lib/index.js",
"scripts": {
"build": "tsc",
"test": "npx cypress run",
"release": "release-it --github.release",
"release:ci": "npm run release -- --ci --npm.skipChecks --no-git.requireCleanWorkingDir",
"release:patch": "npm run release -- patch",
"release:minor": "npm run release -- minor",
"release:major": "npm run release -- major"
},
"repository": {
"type": "git",
"url": "git+https://github.com/elaichenkov/cypress-diff.git"
},
"keywords": [
"cypress",
"testing",
"diff",
"reporter",
"e2e"
],
"author": "Yevhen Laichenkov <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/elaichenkov/cypress-diff/issues"
},
"homepage": "https://github.com/elaichenkov/cypress-diff#readme",
"devDependencies": {
"@types/diff": "^7.0.0",
"cypress": "^13.6.1",
"release-it": "^18.1.1",
"typescript": "^5.3.3"
},
"dependencies": {
"diff": "^7.0.0"
}
}