-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.71 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.71 KB
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
{
"name": "appium-script-generator",
"version": "1.0.0",
"engines": {
"node": ">=20"
},
"main": "src/index.js",
"repository": "git@github.com:kobiton/appium-script-generator.git",
"author": "Kobiton Inc.",
"scripts": {
"start": "bash ./scripts/register-grpc-server.sh; nodemon src/index.js --exec babel-node",
"test": "jest --forceExit",
"lint": "eslint src __tests__",
"build": "bash scripts/build.sh",
"preinstall": "bash ./scripts/npm-preinstall.sh",
"postinstall": "bash ./scripts/npm-postinstall.sh",
"update-schema": "git submodule init; git submodule sync; git submodule update --remote --checkout; bash ./scripts/compile-protoc.sh"
},
"dependencies": {
"@grpc/grpc-js": "1.8.14",
"@grpc/proto-loader": "0.7.6",
"@xmldom/xmldom": "0.8.7",
"archiver": "5.3.1",
"bluebird": "3.7.2",
"del": "2.2.0",
"google-protobuf": "3.21.2",
"grpc-health-check": "^2.0.1",
"keymirror": "0.1.1",
"lodash": "4.17.21",
"moment": "2.29.4",
"ncp": "2.0.0",
"xpath": "0.0.32"
},
"devDependencies": {
"@babel/cli": "7.12.10",
"@babel/core": "7.3.4",
"@babel/eslint-parser": "7.12.1",
"@babel/node": "7.12.10",
"@babel/plugin-proposal-class-properties": "7.3.4",
"@babel/plugin-proposal-decorators": "7.4.0",
"@babel/plugin-transform-modules-commonjs": "7.12.1",
"@babel/polyfill": "7.4.3",
"@babel/preset-env": "7.3.4",
"eslint": "7.15.0",
"eslint-config-standard": "16.0.2",
"eslint-plugin-babel": "5.3.1",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "5.0.0",
"jest": "^29.5.0",
"nodemon": "2.0.6"
}
}