-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.51 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "@percy/appium-app",
"description": "Appium client library for visual testing with Percy",
"version": "2.0.9",
"license": "MIT",
"author": "Perceptual Inc.",
"repository": {
"type": "git",
"url": "git+https://github.com/percy/percy-appium-js.git"
},
"keywords": [
"appium",
"percy",
"visual testing"
],
"main": "index.js",
"types": "types/index.d.ts",
"files": [
"index.js",
"types/index.d.ts",
"percy"
],
"engines": {
"node": ">=14"
},
"publishConfig": {
"access": "public",
"tag": "latest"
},
"scripts": {
"lint": "eslint --ignore-path .gitignore .",
"test": "cross-env NODE_ENV=test percy app:exec --testing -- jasmine --config=./test/jasmine.json",
"test:coverage": "nyc yarn test",
"test:types": "tsd"
},
"dependencies": {
"@percy/sdk-utils": "^1.28.2",
"tmp": "^0.2.3"
},
"devDependencies": {
"@percy/cli": "^1.28.2",
"cross-env": "^7.0.2",
"eslint": "^8.27.0",
"eslint-plugin-n": "^15.5.1",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"jasmine": "^5.4.0",
"jasmine-spec-reporter": "^7.0.0",
"nyc": "^15.1.0",
"tsd": "^0.24.1",
"wd": "^1.14.0",
"webdriverio": "^7.25.4"
},
"bugs": {
"url": "https://github.com/percy/percy-appium-js/issues"
},
"homepage": "https://github.com/percy/percy-appium-js#readme",
"directories": {
"test": "test"
}
}