-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 827 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 827 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
{
"name": "@percy/cli-snapshot",
"version": "1.31.10-beta.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/percy/cli",
"directory": "packages/cli-snapshot"
},
"publishConfig": {
"access": "public",
"tag": "beta"
},
"engines": {
"node": ">=14"
},
"files": [
"dist"
],
"main": "./dist/index.js",
"type": "module",
"exports": "./dist/index.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/snapshot.js"
]
},
"dependencies": {
"@percy/cli-command": "1.31.10-beta.0",
"yaml": "^2.0.0"
}
}