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 4
/
Copy pathpackage.json
61 lines (61 loc) · 1.64 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/playwright",
"description": "Visual testing solution to avoid visual regression. Playwright commands and utilities for Argos visual testing.",
"version": "0.0.7",
"author": "Smooth Code",
"license": "MIT",
"repository": "github:argos-ci/argos-playwright",
"keywords": [
"playwright",
"argos",
"automation",
"test automation",
"testing",
"visual testing",
"regression",
"visual regression"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=16"
},
"type": "module",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs"
},
"./package.json": "./package.json"
},
"scripts": {
"prebuild": "rm -rf dist",
"build": "rollup -c",
"test": "npx playwright test",
"format": "prettier --write .",
"check-format": "prettier --check .",
"lint": "eslint --ignore-path .gitignore .",
"prepublishOnly": "npm run build",
"release": "standard-version && conventional-github-releaser --preset angular"
},
"devDependencies": {
"@argos-ci/cli": "^0.6.0",
"@playwright/test": "^1.38.1",
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.87",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"conventional-github-releaser": "^3.1.5",
"eslint": "^8.50.0",
"prettier": "^3.0.3",
"rollup": "^3.29.2",
"rollup-plugin-dts": "^6.0.2",
"rollup-plugin-swc3": "^0.10.1",
"standard-version": "^9.5.0",
"typescript": "^5.2.2"
}
}