-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.08 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
{
"name": "visual-regression",
"version": "3.0.0",
"description": "Visual regression testing tool",
"main": "dist/src/index",
"scripts": {
"start": "jest test/ --testTimeout 35000",
"pretest": "npm run lint && npm run build",
"test": "jest dist/test/ --testTimeout 35000",
"build": "tsc",
"dev": "npm run build && chokidar '**/*.ts' -c 'npm run build' --ignore node_modules",
"lint": "tslint {test,src}/**/*.ts"
},
"author": "Olavi Haapala",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:olpeh/visual-regression.git"
},
"keywords": [
"puppeteer",
"testing",
"visual",
"regression"
],
"bugs": {
"url": "https://github.com/olpeh/visual-regression/issues"
},
"homepage": "https://github.com/olpeh/visual-regression",
"dependencies": {
"jest": "26.6.3",
"jest-image-snapshot": "4.3.0",
"puppeteer": "5.5.0"
},
"devDependencies": {
"@types/jest": "^25.2.1",
"@types/puppeteer": "^1.10.0",
"chokidar-cli": "^1.2.1",
"tslint": "^5.11.0",
"typescript": "^3.1.6"
}
}