-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathpackage.json
41 lines (41 loc) · 996 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
40
41
{
"name": "@percy/core",
"version": "1.0.0-beta.2",
"main": "dist/index.js",
"types": "types/index.d.ts",
"license": "MIT",
"files": [
"dist",
"types/index.d.ts"
],
"scripts": {
"build": "babel --root-mode upward src --out-dir dist",
"lint": "eslint --ignore-path ../../.gitignore .",
"pretest": "node ../../scripts/install-browser",
"test": "cross-env NODE_ENV=test mocha",
"test:coverage": "nyc yarn test",
"test:types": "tsd"
},
"publishConfig": {
"access": "public"
},
"mocha": {
"require": "../../scripts/babel-register",
"timeout": 10000
},
"dependencies": {
"@percy/client": "^1.0.0-beta.2",
"@percy/dom": "^1.0.0-beta.2",
"@percy/logger": "^1.0.0-beta.2",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"node-fetch": "^2.6.0",
"progress": "^2.0.3",
"puppeteer-core": "^4.0.0"
},
"devDependencies": {
"rimraf": "^3.0.2",
"strip-ansi": "^6.0.0"
}
}