-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathpackage.json
41 lines (41 loc) · 931 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
{
"name": "@percy/client",
"version": "1.30.8-beta.1",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/percy/cli",
"directory": "packages/client"
},
"publishConfig": {
"access": "public",
"tag": "beta"
},
"engines": {
"node": ">=14"
},
"files": [
"dist",
"test/helpers.js"
],
"main": "./dist/index.js",
"type": "module",
"exports": {
".": "./dist/index.js",
"./utils": "./dist/utils.js",
"./detect-proxy": "./dist/detect-proxy.js",
"./test/helpers": "./test/helpers.js"
},
"scripts": {
"build": "node ../../scripts/build",
"lint": "eslint --ignore-path ../../.gitignore .",
"test": "node ../../scripts/test",
"test:coverage": "yarn test --coverage"
},
"dependencies": {
"@percy/env": "1.30.8-beta.1",
"@percy/logger": "1.30.8-beta.1",
"pac-proxy-agent": "^7.0.2",
"pako": "^2.1.0"
}
}