forked from wswebcreation/wdio-ocr-service
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.77 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
{
"name": "wdio-ocr-service",
"version": "1.1.1",
"description": "A WebdriverIO service that is using Tesseract OCR for Appium Native App tests.",
"main": "./build",
"types": "./types/index.d.ts",
"scripts": {
"build": "rimraf ./build && tsc",
"clean": "rimraf coverage build",
"compile": "tsc",
"test.lint": "eslint src",
"test.unit": "jest",
"test.unit.coverage": "jest --coverage",
"test.unit.coverage.watch": "npm run test.unit -- --watchAll",
"watch": "npm run compile -- -w",
"prepare": "husky install",
"release": "release-it --github.release",
"release.ci": "npm run release -- --ci --npm.skipChecks --no-git.requireCleanWorkingDir",
"release.patch": "npm run release -- patch",
"release.minor": "npm run release -- minor",
"release.major": "npm run release -- major",
"precompile": "npm run clean",
"prepublish": "npm run build",
"prerelease": "npm run build"
},
"keywords": [
"appium",
"tesseract",
"OCR",
"native apps"
],
"author": "wswebcreation",
"license": "MIT",
"dependencies": {
"@wdio/logger": "^7.0.0",
"fuse.js": "^6.4.6",
"jimp": "^0.16.1",
"node-tesseract-ocr": "^2.0.0",
"pureimage": "^0.3.2",
"tesseract.js": "^2.1.4",
"xml2js": "^0.4.23"
},
"devDependencies": {
"@types/jest": "^26.0.22",
"@types/node": "^14.14.37",
"@types/xml2js": "^0.4.8",
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.20.0",
"@wdio/sync": "^7.3.0",
"@wdio/types": "^7.2.1",
"eslint": "^7.23.0",
"husky": "^6.0.0",
"jest": "^26.6.3",
"jest-snapshot": "^26.6.2",
"release-it": "^14.11.8",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.4",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
}
}