-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
44 lines (44 loc) · 1009 Bytes
/
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
{
"name": "@mugshot/puppeteer",
"publishConfig": {
"access": "public"
},
"version": "3.0.0",
"description": "A Puppeteer adapter for Mugshot",
"keywords": [
"mugshot",
"puppeteer",
"visual",
"regression",
"testing"
],
"repository": {
"type": "git",
"url": "git+https://github.com/NiGhTTraX/mugshot.git"
},
"author": "Andrei Picus",
"license": "MIT",
"homepage": "https://github.com/NiGhTTraX/mugshot/tree/master/packages/puppeteer",
"main": "dist/index",
"types": "dist/index",
"files": [
"dist"
],
"scripts": {
"build": "pnpm run clean && pnpm run compile",
"clean": "rm -rf ./dist",
"compile": "tsc -p tsconfig.build.json",
"prepublishOnly": "pnpm run build",
"test": "jest --coverage"
},
"peerDependencies": {
"mugshot": "^4.0.0",
"puppeteer": "^19.0.0"
},
"devDependencies": {
"@mugshot/contracts": "~4.0.2",
"mugshot": "^4.0.2",
"puppeteer": "~19.8.0",
"typescript": "~4.9.0"
}
}