-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.45 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
{
"name": "appium-ddlog-plugin",
"version": "0.1.4",
"description": "Appium plugin to stream command results to Datadog Log without Datadog Agent",
"main": "index.js",
"scripts": {
"build": "babel lib --root-mode=upward --out-dir=build/lib",
"dev": "npm run build -- --watch",
"fix": "npm run lint -- --fix",
"prepare": "npm run build",
"lint": "eslint .",
"test": "npm run test:unit",
"test:unit": "mocha \"./test/**/*.spec.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/rerorero/appium-ddlog-plugin.git"
},
"keywords": [
"appium",
"datadog"
],
"author": "rerorero",
"license": "MIT",
"bugs": {
"url": "https://github.com/rerorero/appium-ddlog-plugin/issues"
},
"homepage": "https://github.com/rerorero/appium-ddlog-plugin#readme",
"appium": {
"pluginName": "appium-ddlog-plugin",
"mainClass": "DatadogLogPlugin"
},
"files": [
"build",
"lib",
"index.js"
],
"peerDependencies": {
"appium": "^2.0.0-beta.43"
},
"devDependencies": {
"@appium/eslint-config-appium": "^6.0.4",
"@babel/cli": "7.19.3",
"@babel/core": "7.18.10",
"@babel/plugin-transform-runtime": "^7.18.10",
"@babel/preset-env": "7.20.2",
"@babel/register": "^7.18.9",
"chai": "^4.3.6",
"deep-equal-in-any-order": "^2.0.0",
"eslint": "^7.32.0",
"mocha": "^10.0.0",
"sinon": "^14.0.0"
},
"dependencies": {
"winston": "^3.8.2"
}
}