-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.28 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
{
"name": "snapdiff",
"version": "0.1.0",
"description": "Tools to snap screenshot images with puppeteer and compare them against remote versions",
"main": "build/snapdiff.js",
"bin": "build/cli.js",
"author": "ian.b.taylor@gmail.com",
"license": "MIT",
"private": false,
"files": [
"build/**",
"src/**/*.ts"
],
"scripts": {
"build": "tsc",
"pretest": "cd ./test-app && yarn",
"test": "mocha --require ts-node/register --require mocha-ui-jest --ui jest **/*.test.js **/*.test.ts"
},
"dependencies": {
"@google-cloud/storage": "4.3.0",
"colors": "^1.4.0",
"commander": "^4.1.0",
"copy-dir": "^1.2.0",
"deep-diff": "^1.0.2",
"pixelmatch": "^4.0.2",
"pngjs": "^3.3.3",
"rimraf": "^3.0.1"
},
"peerDependencies": {
"puppeteer": "2",
"mocha": "^7.2.0"
},
"devDependencies": {
"@types/deep-diff": "^1.0.0",
"@types/mkdirp": "^0.5.2",
"@types/mocha": "^5.2.7",
"@types/node": "^13.1.8",
"@types/pixelmatch": "^5.0.0",
"@types/pngjs": "^3.4.0",
"@types/puppeteer": "^2.0.0",
"@types/rimraf": "^2.0.3",
"mkdirp": "^1.0.3",
"mocha-ui-jest": "^0.2.3",
"nodemon": "^2.0.2",
"puppeteer": "^2.0.0",
"ts-jest": "^25.0.0",
"ts-node": "^8.6.2",
"typescript": "^3.7.5"
}
}