-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
48 lines (48 loc) · 1.21 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
44
45
46
47
48
{
"name": "@percy/nightwatch",
"description": "Nightwatch client library for visual testing with Percy",
"version": "2.2.0",
"license": "MIT",
"author": "Perceptual Inc.",
"repository": "https://github.com/percy/percy-nightwatch",
"keywords": [
"nightwatch",
"percy",
"visual testing"
],
"main": "commands/percySnapshot.js",
"types": "types/percySnapshot.d.ts",
"files": [
"commands/percySnapshot.js",
"types/percySnapshot.d.ts"
],
"engines": {
"node": ">=14"
},
"scripts": {
"lint": "eslint --ignore-path .gitignore .",
"test": "MOZ_HEADLESS=1 percy exec --testing -- nightwatch",
"test:coverage": "nyc yarn test",
"test:types": "tsd"
},
"dependencies": {
"@percy/sdk-utils": "^1.0.0"
},
"peerDependencies": {
"nightwatch": ">=1 || >=2 || >=3"
},
"devDependencies": {
"@percy/cli": "^1.26.1",
"eslint": "^7.11.0",
"eslint-config-standard": "^16.0.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"expect": "^27.0.2",
"mocha": "^10.0.0",
"nightwatch": "^3.0.1",
"nyc": "^15.1.0",
"tsd": "^0.24.1"
}
}