-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathpackage.json
43 lines (43 loc) · 1.03 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
{
"name": "@percy/cli-exec",
"description": "capture and upload snaphots",
"version": "1.0.0-beta.2",
"license": "MIT",
"main": "dist/index.js",
"files": [
"dist",
"oclif.manifest.json"
],
"scripts": {
"build": "babel --root-mode upward src --out-dir dist",
"lint": "eslint --ignore-path ../../.gitignore .",
"postbuild": "oclif-dev manifest",
"readme": "oclif-dev readme",
"pretest": "node ../../scripts/install-browser",
"test": "cross-env NODE_ENV=test mocha",
"test:coverage": "nyc yarn test"
},
"publishConfig": {
"access": "public"
},
"mocha": {
"require": "../../scripts/babel-register",
"timeout": 10000
},
"oclif": {
"bin": "percy",
"commands": "./dist/commands",
"topics": {
"exec": {
"description": "capture and upload snapshots"
}
}
},
"dependencies": {
"@percy/cli-command": "^1.0.0-beta.2",
"@percy/core": "^1.0.0-beta.2",
"@percy/logger": "^1.0.0-beta.2",
"cross-spawn": "^7.0.1",
"which": "^2.0.2"
}
}