-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
37 lines (37 loc) · 924 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
{
"name": "mocha-trx-reporter",
"description": "A mocha reporter for trx",
"version": "3.3.1",
"author": "Pablo Penén <[email protected]>",
"license": "MIT",
"repository": "Infragistics/mocha-trx-reporter",
"homepage": "https://github.com/Infragistics/mocha-trx-reporter",
"keywords": [
"mocha",
"trx",
"reporter"
],
"main": "lib/trx.js",
"engines": {
"node": ">=6.4.0"
},
"dependencies": {
"node-trx": "^0.9.1"
},
"peerDependencies": {
"mocha": ">=3.0.0"
},
"devDependencies": {
"eslint": "^5.12.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-mocha": "^5.2.1",
"mocha": "^6.2.2",
"should": "^10.0.0"
},
"scripts": {
"lint": "eslint .",
"test": "eslint . && mocha test/",
"test-trx-file": "mocha --reporter lib/trx.js --reporter-options output=resultFile.trx test/"
}
}