forked from meinaart/cypress-plugin-snapshots
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 2.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
{
"name": "cypress-plugin-snapshots",
"version": "1.1.4",
"description": "Cypress snapshot functionality for data",
"homepage": "https://github.com/meinaart/cypress-plugin-snapshots",
"repository": {
"type": "git",
"url": "https://github.com/meinaart/cypress-plugin-snapshots.git"
},
"files": [
"*.js",
"*.md",
"assets",
"docs",
"LICENSE",
"tasks",
"utils"
],
"engines": {
"node": ">=8.2.1"
},
"bugs": {
"url": "https://github.com/meinaart/cypress-plugin-snapshots/issues"
},
"keywords": [
"cypress",
"cypress-io",
"cypress-plugin"
],
"author": "Meinaart van Straalen",
"license": "MIT",
"scripts": {
"ci:test": "npm --prefix cypress run ci:test",
"cy:open": "npm --prefix cypress run cy:open",
"cy:run": "npm --prefix cypress run cy:run",
"cy:verify": "npm --prefix cypress run cy:verify",
"jest": "jest",
"lint": "eslint *.js",
"start": "node cypress/test-server/index.js",
"test": "jest & npm --prefix cypress run cy:run"
},
"dependencies": {
"bufferutil": "^4.0.0",
"diff2html": "^2.4.0",
"dom-compare": "^0.3.2",
"fs-extra": "^7.0.1",
"js-base64": "^2.4.9",
"lodash": "^4.17.11",
"prettier": "^1.15.2",
"socket.io": "^2.1.1",
"source-map-support": "^0.5.9",
"unidiff": "0.0.4",
"utf-8-validate": "^5.0.1",
"uws": "^10.148.2"
},
"peerDependencies": {
"cypress": "^3.1.1"
},
"devDependencies": {
"eslint": "^5.9.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-cypress": "^2.1.2",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^22.0.0",
"jest": "^23.6.0",
"rewire": "^4.0.1"
},
"prettier": {
"printWidth": 100,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"eslintConfig": {
"extends": [
"airbnb-base",
"prettier"
],
"plugins": [
"cypress",
"jest"
],
"env": {
"cypress/globals": true,
"jest/globals": true
},
"rules": {
"no-param-reassign": 0,
"no-use-before-define": 0,
"global-require": 0,
"no-underscore-dangle": 0
}
},
"eslintIgnore": [
"cypress/**/*"
],
"jest": {
"testPathIgnorePatterns": [
"<rootDir>/examples/",
"<rootDir>/node_modules/",
"<rootDir>/cypress/"
],
"clearMocks": true,
"testEnvironment": "node"
}
}