This repository has been archived by the owner on Feb 11, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 78
/
package.json
81 lines (81 loc) · 2.17 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
75
76
77
78
79
80
81
{
"name": "test-ai-classifier",
"version": "4.0.2",
"description": "Appium semantic label plugin",
"homepage": "https://github.com/testdotai/appium-classifier-plugin#readme",
"bugs": "https://github.com/testdotai/appium-classifier-plugin/issues",
"main": "./build-js/index.js",
"bin": {
"test-ai-classifier": "./build-js/lib/rpc.js"
},
"gypfile": true,
"scripts": {
"clean-js": "rm -rf node_modules && rm -f package-lock.json && rm -rf build-js && npm install",
"clean-cc": "node-gyp clean && rm -rf build",
"clean": "npm run clean-js && npm run clean-cc",
"build-js": "gulp transpile",
"build-cc": "node-gyp rebuild",
"build": "npm run build-cc && npm run build-js",
"mocha": "mocha",
"prepublish": "gulp prepublish",
"postinstall": "node ./postinstall.js",
"test": "gulp once",
"e2e-test": "gulp e2e-test",
"watch": "gulp watch",
"coverage": "gulp coveralls",
"lint": "gulp eslint",
"lint:fix": "gulp eslint --fix"
},
"files": [
"build-js",
"cc",
"lib",
"model",
"index.js",
"postinstall.js",
"binding.gyp",
"gulpfile.js",
"classifier-proto/classifier.proto",
"README.md"
],
"keywords": [
"test",
"automation",
"appium",
"ai",
"ml"
],
"repository": "github:testdotai/appium-classifier-plugin",
"author": "Jonathan Lipps <jlipps@gmail.com>",
"license": "Apache-2.0",
"dependencies": {
"@grpc/proto-loader": "0.x",
"@tensorflow/tfjs-node": "1.x",
"appium-base-driver": "3.x",
"appium-support": "2.x",
"asyncbox": "2.x",
"bindings": "1.x",
"bluebird": "3.x",
"canvas": "2.x",
"grpc": "^1.24.2",
"lodash": "4.x",
"node-addon-api": "1.x",
"npmlog": "4.x",
"request-promise": "4.x",
"yargs": "15.x"
},
"devDependencies": {
"appium-gulp-plugins": "^3.0.0",
"babel-eslint": "^7.1.1",
"chai": "^4.1.2",
"eslint": "^3.18.0",
"eslint-config-appium": "^2.0.1",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-mocha": "^4.7.0",
"eslint-plugin-promise": "^3.3.1",
"mocha": "^5.1.1",
"should": "^13.2.3",
"wd": "^1.11.0"
}
}