-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
76 lines (76 loc) · 2.01 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
{
"name": "aye-spy",
"version": "4.6.0",
"description": "A visual regression tool",
"main": "lib/bin/run.js",
"scripts": {
"test:e2e": "yarn build && ./node_modules/.bin/jest e2eTests/*",
"test:e2e:build": "cd e2eTests && docker-compose build e2e",
"test:e2e:run": "cd e2eTests && docker-compose run e2e",
"test": "./node_modules/.bin/jest ./src/* --coverage",
"testWithCoveralls": "./node_modules/.bin/jest ./src/* --coverage --coverageReporters=text-lcov | coveralls",
"lint": "eslint src/ --fix && eslint e2eTests/ --fix",
"lint-staged": "lint-staged",
"build": "babel src --out-dir lib",
"prepare": "yarn build",
"pre-commit": "yarn lint"
},
"jest": {
"modulePathIgnorePatterns": [
"./lib"
]
},
"lint-staged": {
"src/**/*.js": [
"./node_modules/.bin/eslint src/* --fix",
"git add"
]
},
"pre-commit": [
"lint-staged",
"test"
],
"bin": {
"ayespy": "lib/bin/run.js"
},
"repository": "git+https://github.com/newsuk/AyeSpy",
"keywords": [
"visual-regression",
"testing",
"test"
],
"author": "newsuk",
"license": "ISC",
"bugs": {
"url": "https://github.com/newsuk/AyeSpy/issues"
},
"homepage": "https://github.com/newsuk/AyeSpy#readme",
"dependencies": {
"aws-sdk": "^2.252.1",
"cli-progress": "2.1.1",
"commander": "^2.15.1",
"inquirer": "6.2.0",
"jimp": "^0.5.3",
"looks-same": "^3.3.0",
"npmlog": "^4.1.2",
"pug": "^2.0.3",
"selenium-webdriver": "^4.0.0-alpha.1"
},
"devDependencies": {
"coveralls": "3.0.2",
"snyk": "^1.118.0",
"release-documentation-cli": "2.5.3",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-prettier": "^2.6.0",
"jest": "^23.1.0",
"lint-staged": "7.1.2",
"pre-commit": "1.2.2",
"prettier": "^1.13.3"
}
}