-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
74 lines (74 loc) · 1.73 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
64
65
66
67
68
69
70
71
72
73
74
{
"name": "detox-applitools-testing",
"version": "2.2.0",
"description": "Utility to integrate applitools screenshot testing in your detox tests",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist",
"!*.test.js",
"!*.test.d.ts"
],
"scripts": {
"clean": "rm -rf dist",
"build": "tsc",
"pretest": "npm run build && npm run lint",
"test": "jest",
"lint": "eslint .",
"prepublish": "npm run clean && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wix-incubator/detox-applitools-testing.git"
},
"keywords": [
"applitools",
"detox",
"screenshot",
"testing"
],
"author": "Gytis Vinclovas",
"license": "MIT",
"bugs": {
"url": "https://github.com/wix-incubator/detox-applitools-testing/issues"
},
"homepage": "https://github.com/wix-incubator/detox-applitools-testing#readme",
"dependencies": {
"@applitools/eyes-common": "^3.24.0",
"@applitools/eyes-images": "4.21.0"
},
"peerDependencies": {
"detox": "*"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/node": "^14.14.35",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"eslint": "^7.22.0",
"husky": "^5.2.0",
"jest": "^27.2.2",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"ts-jest": "^27.1.3",
"typescript": "^4.2.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": "eslint --cache --fix",
"*.{js,css,md,ts}": "prettier --write"
},
"jest": {
"resetMocks": true,
"testMatch": [
"<rootDir>/lib/**/*.test.ts"
],
"transform": {
"\\.ts$": "ts-jest"
}
}
}