-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.36 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
{
"name": "cypress-blink-test",
"version": "0.1.2",
"description": "Module for adding visual regression testing to Cypress with Blink",
"repository": "https://github.com/PatrickWalker/cypress-visual-regression",
"author": "Patrick Walker <[email protected]>",
"license": "MIT",
"keywords": [
"visual regression",
"image diff",
"cypress",
"blink"
],
"scripts": {
"test": "./node_modules/.bin/cypress run --env type=actual",
"base": "./node_modules/.bin/cypress run --env type=base --config screenshotsFolder=cypress/snapshots/base",
"prepublish": "npm run lint && npm run build",
"lint": "./node_modules/.bin/eslint src/**",
"prebuild": "./node_modules/.bin/rimraf dist",
"build": "./node_modules/.bin/babel src --out-dir dist",
"ci": "export SNAPSHOT_DIRECTORY=cypress/snapshots && npm run build && npm run base && npm test"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-plugin-import": "^2.13.0",
"rimraf": "^2.6.2"
},
"peerDependencies": {
"cypress": "^3.1.2"
},
"files": [
"dist/command.js",
"dist/plugin.js",
"dist/README.md",
"dist/package.json"
],
"ignore": [
"src",
"cypress",
"cypress.json"
],
"dependencies": {
"blink-diff": "^1.0.13",
"fs": "0.0.1-security"
}
}