This repository has been archived by the owner on Oct 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.53 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
{
"name": "@argos-ci/puppeteer",
"description": "Visual testing solution to avoid visual regression. Puppeteer commands and utilities for Argos visual testing.",
"version": "0.0.3",
"author": "Smooth Code",
"license": "MIT",
"repository": "github:argos-ci/argos-puppeteer",
"keywords": [
"puppeteer",
"argos",
"automation",
"test automation",
"testing",
"visual testing",
"regression",
"visual regression"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=16"
},
"type": "module",
"exports": {
".": {
"import": "./index.js",
"require": "./index.cjs",
"types": "./index.d.ts",
"default": "./index.js"
},
"./package.json": "./package.json"
},
"scripts": {
"jest": "NODE_OPTIONS=--experimental-vm-modules jest",
"test": "npm run jest --runInBand",
"format": "prettier --write .",
"check-format": "prettier --check .",
"lint": "eslint --ignore-path .gitignore .",
"release": "standard-version && conventional-github-releaser --preset angular"
},
"peerDependencies": {
"puppeteer": ">=1"
},
"devDependencies": {
"@argos-ci/cli": "^0.1.2",
"@types/jest": "^28.1.8",
"conventional-github-releaser": "^3.1.5",
"eslint": "^8.23.0",
"eslint-plugin-html": "^7.1.0",
"jest": "^29.0.1",
"jest-light-runner": "^0.4.0",
"jest-puppeteer": "^6.1.1",
"prettier": "^2.7.1",
"puppeteer": "^17.0.0",
"standard-version": "^9.5.0"
},
"dependencies": {
"mkdirp": "^1.0.4"
}
}