-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1023 Bytes
/
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
{
"name": "wdio-simple-reporter",
"version": "0.1.2",
"description": "A WebdriverIO plugin. Reports results in 'json' format.",
"main": "lib/reporter.js",
"scripts": {
"build": "rm -rf ./lib && tsc",
"prepublish": "npm prune && npm build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andriilazebnyi/wdio-simple-reporter.git"
},
"directories": {
"lib": "./lib"
},
"keywords": [
"json",
"reporter",
"webdriverio",
"wdio",
"wdio-plugin",
"wdio-reporter"
],
"author": "Andrii Lazebnyi <lazebniy.a@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/andriilazebnyi/wdio-simple-reporter/issues"
},
"homepage": "https://github.com/andriilazebnyi/wdio-simple-reporter#readme",
"devDependencies": {
"@types/mkdirp": "^0.3.29",
"@types/node": "^7.0.11",
"typescript": "^2.2.1"
},
"dependencies": {
"mkdirp": "^0.5.1"
},
"contributors": [
"Andrii Lazebnyi <lazebniy.a@gmail.com>"
]
}