-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.12 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
{
"name": "wdio-screenshot-uploader-service",
"version": "0.1.0",
"description": "WebdriverIO service for uploading screenshots to online storages.",
"main": "index.js",
"scripts": {
"pretest": "xo --fix",
"test": "xo && nyc --reporter=html --reporter=text ava -s",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once"
},
"keywords": [
"webdriverio",
"wdio",
"errorshots",
"screenshots",
"uploader",
"s3",
"aws",
"test",
"automation",
"cloud",
"wdio-service"
],
"author": "“Dimitri <“[email protected]”>",
"license": "ISC",
"devDependencies": {
"ava": "^0.25.0",
"coveralls": "^3.0.0",
"dotenv": "^5.0.1",
"nyc": "^11.7.3",
"request": "^2.87.0",
"semantic-release": "^12.4.1",
"semantic-release-tamia": "^2.0.1",
"test-console": "^1.1.0",
"travis-deploy-once": "^5.0.0",
"xo": "^0.21.0"
},
"dependencies": {
"aws-sdk": "^2.249.1",
"chalk": "^2.4.1",
"fs": "0.0.1-security",
"path": "^0.12.7"
}
}