-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 833 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 833 Bytes
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/cli-build",
"version": "1.31.13",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/percy/cli",
"directory": "packages/cli-build"
},
"publishConfig": {
"access": "public",
"tag": "latest"
},
"engines": {
"node": ">=14"
},
"files": [
"dist"
],
"main": "./dist/index.js",
"type": "module",
"exports": {
".": "./dist/index.js",
"./utils": "./dist/utils.js"
},
"scripts": {
"build": "node ../../scripts/build",
"lint": "eslint --ignore-path ../../.gitignore .",
"readme": "percy-cli-readme",
"test": "node ../../scripts/test",
"test:coverage": "yarn test --coverage"
},
"@percy/cli": {
"commands": [
"./dist/build.js"
]
},
"dependencies": {
"@percy/cli-command": "1.31.13"
}
}