-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathpackage.json
39 lines (39 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
{
"name": "@percy/cli-upload",
"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",
"test": "cross-env NODE_ENV=test mocha",
"test:coverage": "nyc yarn test"
},
"publishConfig": {
"access": "public"
},
"mocha": {
"require": "../../scripts/babel-register"
},
"oclif": {
"bin": "percy",
"commands": "./dist/commands",
"hooks": {
"init": "./dist/hooks/init"
}
},
"dependencies": {
"@percy/cli-command": "^1.0.0-beta.2",
"@percy/client": "^1.0.0-beta.2",
"@percy/config": "^1.0.0-beta.2",
"@percy/logger": "^1.0.0-beta.2",
"globby": "^11.0.0",
"image-size": "^0.8.3"
}
}