-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.3 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
{
"name": "wdio-tap-reporter",
"version": "0.0.5",
"description": "A WebdriverIO plugin. Report results in 'tap' format",
"author": "Karol Janyst <lapkom@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:LKay/wdio-tap-reporter.git"
},
"bugs": {
"url": "https://github.com/LKay/wdio-tap-reporter/issues"
},
"keywords": [
"tap",
"reporter",
"webdriverio",
"wdio",
"wdio-plugin",
"wdio-reporter"
],
"main": "lib/reporter.js",
"files": [
"lib"
],
"directories": {
"lib": "./lib"
},
"devDependencies": {
"@types/node": "^9.4.1",
"ava": "^0.25.0",
"coveralls": "^3.0.0",
"nyc": "^11.4.1",
"rimraf": "^2.6.2",
"tap-nyan": "^1.1.0",
"tslint": "^5.9.1",
"typescript": "^2.7.1"
},
"dependencies": {},
"scripts": {
"clean": "rimraf lib coverage .nyc_output",
"lint": "tslint src/**/*.ts",
"ava": "tsc -p test/tsconfig.tests.json && nyc ava | tap-nyan",
"test": "npm run lint && npm run ava",
"report": "nyc report --reporter=html",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"build": "npm run clean && tsc",
"prepublish": "npm run clean && npm run build"
},
"ava": {
"files": [
"test/**/*.specs.js"
],
"tap": true
}
}