1 | {
|
2 | "name": "wdio-spec-reporter",
|
3 | "version": "0.1.5",
|
4 | "description": "A WebdriverIO plugin. Report results in 'spec' format.",
|
5 | "main": "build/reporter.js",
|
6 | "scripts": {
|
7 | "build": "run-s clean compile",
|
8 | "clean": "rm -rf ./build ./coverage",
|
9 | "compile": "babel lib/ -d build/",
|
10 | "eslint": "eslint ./lib test/",
|
11 | "release": "np patch",
|
12 | "release:patch": "np patch",
|
13 | "release:minor": "np minor",
|
14 | "release:major": "np major",
|
15 | "test": "run-s eslint test:unit",
|
16 | "test:ci": "run-s clean eslint test:cover",
|
17 | "test:unit": "mocha --compilers js:babel-core/register test/*.js",
|
18 | "test:cover": "babel-node ./node_modules/.bin/isparta cover --include 'lib/*.js' _mocha",
|
19 | "prepublish": "npm prune",
|
20 | "watch": "npm run compile -- --watch"
|
21 | },
|
22 | "repository": {
|
23 | "type": "git",
|
24 | "url": "git+https://github.com/webdriverio/wdio-spec-reporter.git"
|
25 | },
|
26 | "directories": {
|
27 | "lib": "./lib"
|
28 | },
|
29 | "keywords": [
|
30 | "spec",
|
31 | "reporter",
|
32 | "webdriverio",
|
33 | "wdio",
|
34 | "wdio-plugin",
|
35 | "wdio-reporter"
|
36 | ],
|
37 | "author": "Christian Bromann <christian@saucelabs.com>",
|
38 | "license": "MIT",
|
39 | "bugs": {
|
40 | "url": "https://github.com/webdriverio/wdio-spec-reporter/issues"
|
41 | },
|
42 | "homepage": "https://github.com/webdriverio/wdio-spec-reporter#readme",
|
43 | "dependencies": {
|
44 | "babel-runtime": "~6.26.0",
|
45 | "chalk": "^2.3.0",
|
46 | "humanize-duration": "~3.15.0"
|
47 | },
|
48 | "devDependencies": {
|
49 | "babel-cli": "^6.24.1",
|
50 | "babel-core": "^6.25.0",
|
51 | "babel-eslint": "^8.0.0",
|
52 | "babel-plugin-add-module-exports": "^0.2.1",
|
53 | "babel-preset-env": "^1.6.1",
|
54 | "babel-preset-stage-0": "^6.24.1",
|
55 | "codeclimate-test-reporter": "^0.4.1",
|
56 | "eslint": "^4.1.0",
|
57 | "eslint-config-standard": "^11.0.0",
|
58 | "eslint-plugin-import": "^2.3.0",
|
59 | "eslint-plugin-mocha": "^5.0.0",
|
60 | "eslint-plugin-node": "^6.0.0",
|
61 | "eslint-plugin-promise": "^3.5.0",
|
62 | "eslint-plugin-standard": "^3.0.0",
|
63 | "isparta": "^4.0.0",
|
64 | "istanbul": "^0.4.5",
|
65 | "mocha": "^5.0.0",
|
66 | "np": "^2.13.2",
|
67 | "npm-run-all": "^4.0.2",
|
68 | "should": "^13.0.0",
|
69 | "sinon": "^6.0.0"
|
70 | },
|
71 | "contributors": [
|
72 | "George Crawford <george.crawford@ft.com>",
|
73 | "Christian Bromann <github@christian-bromann.com>",
|
74 | "W. van Kuipers <w.vankuipers@lukkien.com>",
|
75 | "christian-bromann <mail@christian-bromann.com>",
|
76 | "Tim Brust <tim.brust@sinnerschrader.com>",
|
77 | "Tim Brust <ratchet.player@gmx.de>",
|
78 | "George Crawford <g.o.crawford@gmail.com>"
|
79 | ]
|
80 | }
|