-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
49 lines (49 loc) · 1.26 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
{
"name": "@percy/cypress",
"description": "Cypress client library for visual testing with Percy",
"version": "3.1.3-beta.0",
"license": "MIT",
"author": "Perceptual Inc.",
"repository": "https://github.com/percy/percy-cypress",
"keywords": [
"cypress",
"percy",
"visual testing"
],
"main": "index.js",
"types": "types/index.d.ts",
"files": [
"index.js",
"types/index.d.ts"
],
"scripts": {
"lint": "eslint --ignore-path .gitignore .",
"test": "percy exec --testing -- cypress run",
"coverage": "nyc report --check-coverage",
"test:coverage": "yarn test && yarn coverage",
"test:types": "tsd"
},
"dependencies": {
"@percy/sdk-utils": "^1.3.1"
},
"peerDependencies": {
"cypress": ">=3"
},
"devDependencies": {
"@cypress/code-coverage": "^3.10.0",
"@percy/cli": "^1.10.4",
"babel-loader": "^9.0.0",
"babel-plugin-istanbul": "^6.0.0",
"cypress": "^12.8.1",
"eslint": "^7.22.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"nyc": "^15.1.0",
"tsd": "^0.28.0",
"webpack": "^5.73.0"
}
}