1 | {
|
2 | "name": "wdio-dot-reporter",
|
3 | "version": "0.0.10",
|
4 | "description": "A WebdriverIO plugin. Report results in dot format.",
|
5 | "author": "Christian Bromann <christian@saucelabs.com>",
|
6 | "homepage": "https://github.com/webdriverio/wdio-dot-reporter#readme",
|
7 | "license": "MIT",
|
8 | "repository": {
|
9 | "type": "git",
|
10 | "url": "git+https://github.com/webdriverio/wdio-dot-reporter.git"
|
11 | },
|
12 | "main": "build/reporter.js",
|
13 | "directories": {
|
14 | "lib": "./lib"
|
15 | },
|
16 | "scripts": {
|
17 | "build": "run-s clean compile",
|
18 | "clean": "rm -rf ./build ./coverage",
|
19 | "compile": "babel lib/ -d build/",
|
20 | "eslint": "eslint ./lib test/",
|
21 | "release": "np patch",
|
22 | "release:patch": "np patch",
|
23 | "release:minor": "np minor",
|
24 | "release:major": "np major",
|
25 | "test": "run-s eslint test:unit",
|
26 | "test:ci": "run-s clean eslint test:cover",
|
27 | "test:unit": "mocha --compilers js:babel-core/register test/*.js",
|
28 | "test:cover": "babel-node ./node_modules/.bin/isparta cover --include 'lib/*.js' _mocha",
|
29 | "prepublish": "npm prune && run-s build",
|
30 | "watch": "npm run compile -- --watch"
|
31 | },
|
32 | "keywords": [
|
33 | "dot",
|
34 | "reporter",
|
35 | "webdriverio",
|
36 | "wdio",
|
37 | "wdio-plugin",
|
38 | "wdio-reporter"
|
39 | ],
|
40 | "bugs": {
|
41 | "url": "https://github.com/webdriverio/wdio-dot-reporter/issues"
|
42 | },
|
43 | "dependencies": {},
|
44 | "devDependencies": {
|
45 | "babel-cli": "~6.26.0",
|
46 | "babel-core": "~6.26.0",
|
47 | "babel-eslint": "~8.2.0",
|
48 | "babel-istanbul": "~0.12.2",
|
49 | "babel-plugin-add-module-exports": "~0.2.1",
|
50 | "babel-preset-es2015": "~6.24.1",
|
51 | "babel-preset-stage-0": "~6.24.1",
|
52 | "codeclimate-test-reporter": "~0.4.1",
|
53 | "eslint": "~4.19.0",
|
54 | "eslint-config-standard": "~11.0.0-beta.0",
|
55 | "eslint-plugin-import": "~2.12.0",
|
56 | "eslint-plugin-node": "~6.0.0",
|
57 | "eslint-plugin-promise": "~3.8.0",
|
58 | "eslint-plugin-standard": "~3.0.1",
|
59 | "isparta": "~4.0.0",
|
60 | "istanbul": "~0.4.5",
|
61 | "mocha": "~5.2.0",
|
62 | "np": "~3.0.0",
|
63 | "npm-run-all": "~4.1.0",
|
64 | "should": "~13.2.0",
|
65 | "sinon": "~5.1.0"
|
66 | },
|
67 | "contributors": [
|
68 | "George Crawford <george.crawford@ft.com>",
|
69 | "Christian Bromann <github@christian-bromann.com>",
|
70 | "christian-bromann <mail@christian-bromann.com>"
|
71 | ]
|
72 | }
|