-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
45 lines (45 loc) · 1.05 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
{
"name": "puppeteer-screenshot-tester",
"version": "1.6.0",
"description": "Small library that allows us to compare screenshots generated by puppeteer in our tests",
"main": "src/index.js",
"scripts": {
"test": "jest",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate"
},
"bugs": {
"url": "https://github.com/burnpiro/puppeteer-screenshot-tester/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/burnpiro/puppeteer-screenshot-tester"
},
"engines": {
"node": ">=12.0.0"
},
"author": "Kemal Erdem",
"email": "kemalpiro@gmail.com",
"license": "MIT",
"keywords": [
"puppeteer",
"nodejs",
"testing",
"jest",
"screenshot",
"test",
"javascript"
],
"dependencies": {
"fs": "^0.0.1-security",
"nodejs-resemble": "^0.4.1",
"parent-module": "^2.0.0",
"path": "^0.12.7",
"sharp": "^0.29.2"
},
"devDependencies": {
"all-contributors-cli": "^6.20.0",
"jest": "^26.6.3",
"puppeteer": "^11.0.0"
}
}