-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
61 lines (61 loc) · 1.63 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": "test-ai-classifier-client",
"version": "1.1.0",
"description": "grpc client for semantic label classifier",
"homepage": "https://github.com/testdotai/classifier-client-node",
"bugs": "https://github.com/testdotai/classifier-client-node/issues",
"main": "./build/index.js",
"gypfile": true,
"scripts": {
"clean": "rm -rf node_modules && rm -f package-lock.json && rm -rf build && npm install",
"build": "gulp transpile",
"mocha": "mocha",
"prepublish": "gulp prepublish",
"test": "npm run build && mocha -t 60000 -R spec ./build/test/*-specs.js",
"e2e-test": "gulp e2e-test",
"watch": "gulp watch",
"coverage": "gulp coveralls",
"lint": "gulp eslint",
"lint:fix": "gulp eslint --fix"
},
"files": [
"build",
"lib",
"index.js",
"proto/classifier.proto",
"gulpfile.js",
"README.md"
],
"keywords": [
"test",
"automation",
"appium",
"selenium",
"ai",
"ml"
],
"repository": "github:testdotai/classifier-client-node",
"author": "Jonathan Lipps <jlipps@gmail.com>",
"license": "Apache-2.0",
"dependencies": {
"@grpc/proto-loader": "^0.5.3",
"bluebird": "3.x",
"grpc": "^1.24.2",
"lodash": "4.x"
},
"devDependencies": {
"appium-gulp-plugins": "^3.0.0",
"babel-eslint": "^7.1.1",
"chai": "^4.1.2",
"eslint": "^4.18.2",
"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",
"webdriverio": "^5.16.10"
}
}