-
Notifications
You must be signed in to change notification settings - Fork 47
/
package.json
54 lines (54 loc) · 1.06 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
{
"name": "@percy/sdk-utils",
"version": "1.30.5",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/percy/cli",
"directory": "packages/sdk-utils"
},
"publishConfig": {
"access": "public",
"tag": "latest"
},
"engines": {
"node": ">=14"
},
"files": [
"dist",
"test/server.js",
"test/client.js",
"test/helpers.js"
],
"main": "./dist/index.js",
"browser": "./dist/bundle.js",
"exports": {
".": {
"node": "./dist/index.js",
"default": "./dist/bundle.js"
},
"./test/helpers": {
"node": "./test/helpers.js",
"default": "./test/client.js"
}
},
"scripts": {
"build": "node ../../scripts/build",
"lint": "eslint --ignore-path ../../.gitignore .",
"test": "percy exec --testing -- node ../../scripts/test",
"test:coverage": "yarn test --coverage"
},
"rollup": {
"external": [
"ws"
],
"output": {
"name": "PercySDKUtils"
},
"test": {
"external": [
"test/server(.js)?"
]
}
}
}