-
Notifications
You must be signed in to change notification settings - Fork 119
/
Copy pathpackage.json
131 lines (131 loc) · 3 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "cypress-plugin-snapshots",
"version": "1.4.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"
},
"types": "types/index.d.ts",
"files": [
"*.js",
"*.md",
"assets",
"docs",
"LICENSE",
"src",
"types"
],
"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": "jest & 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": {
"diff2html": "^2.7.0",
"fs-extra": "^7.0.1",
"image-size": "^0.7.2",
"jimp": "^0.16.1",
"js-base64": "^2.5.1",
"lodash": "^4.17.13",
"pixelmatch": "^4.0.2",
"pngjs": "^3.3.3",
"prettier": "^1.16.4",
"rand-token": "^1.0.1",
"rimraf": "^2.6.3",
"sanitize-filename": "^1.6.1",
"socket.io": "^2.2.0",
"socket.io-client": "^2.2.0",
"source-map-support": "^0.5.10",
"unidiff": "1.0.2"
},
"peerDependencies": {
"cypress": ">=4.5.0"
},
"devDependencies": {
"eslint": "^5.14.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-cypress": "^2.2.1",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jest": "^22.3.0",
"jest": "^24.1.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,
"object-curly-newline": [
"error",
{
"ObjectExpression": {
"consistent": true
},
"ObjectPattern": {
"consistent": true
},
"ImportDeclaration": {
"multiline": true,
"minProperties": 3
},
"ExportDeclaration": {
"multiline": true,
"minProperties": 3
}
}
]
}
},
"eslintIgnore": [
"cypress/**/*"
],
"jest": {
"testPathIgnorePatterns": [
"<rootDir>/examples/",
"<rootDir>/node_modules/",
"<rootDir>/cypress/"
],
"clearMocks": true,
"testEnvironment": "node"
}
}