-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathpackage.json
64 lines (64 loc) · 1.55 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
62
63
64
{
"name": "@percy/core",
"version": "1.30.7",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/percy/cli",
"directory": "packages/core"
},
"publishConfig": {
"access": "public",
"tag": "latest"
},
"engines": {
"node": ">=14"
},
"files": [
"dist",
"post-install.js",
"types/index.d.ts",
"test/helpers"
],
"main": "./dist/index.js",
"types": "./types/index.d.ts",
"type": "module",
"exports": {
".": {
"types": "./types/index.d.ts",
"default": "./dist/index.js"
},
"./utils": "./dist/utils.js",
"./config": "./dist/config.js",
"./install": "./dist/install.js",
"./test/helpers": "./test/helpers/index.js",
"./test/helpers/server": "./test/helpers/server.js"
},
"scripts": {
"build": "node ../../scripts/build",
"lint": "eslint --ignore-path ../../.gitignore .",
"postinstall": "node ./post-install",
"test": "node ../../scripts/test",
"test:coverage": "yarn test --coverage",
"test:types": "tsd"
},
"dependencies": {
"@percy/client": "1.30.7",
"@percy/config": "1.30.7",
"@percy/dom": "1.30.7",
"@percy/logger": "1.30.7",
"@percy/monitoring": "1.30.7",
"@percy/webdriver-utils": "1.30.7",
"content-disposition": "^0.5.4",
"cross-spawn": "^7.0.3",
"extract-zip": "^2.0.1",
"fast-glob": "^3.2.11",
"micromatch": "^4.0.8",
"mime-types": "^2.1.34",
"pako": "^2.1.0",
"path-to-regexp": "^6.3.0",
"rimraf": "^3.0.2",
"ws": "^8.17.1",
"yaml": "^2.4.1"
}
}