forked from AdmitadSDK/mocha-testlink-reporter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.59 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
{
"name": "mocha-testlink-reporter",
"version": "1.1.1",
"description": "A custom mocha reporter for TestLink",
"main": "index.js",
"scripts": {
"test": "mocha --reporter index.js --reporter-options URL=http://localhost,apiKey=6bfa04dbfbc5463925786ef48d1793d4,prefix=XPJ",
"test-broken": "mocha --reporter index.js --reporter-options URL=http://localhost,apiKey=6bfa04dbfbc5463925786ef48d1793d4",
"planid-buildid": "mocha --reporter index.js --reporter-options URL=http://localhost,apiKey=6bfa04dbfbc5463925786ef48d1793d4,prefix=XPJ,testplanid=14,buildid=1",
"manplan-manbuild": "mocha --reporter index.js --reporter-options URL=http://localhost,apiKey=6bfa04dbfbc5463925786ef48d1793d4,prefix=XPJ,testplanname=manplan,buildname=manbuild",
"autoplan-autobuild": "mocha --reporter index.js --reporter-options URL=http://localhost,apiKey=6bfa04dbfbc5463925786ef48d1793d4,prefix=XPJ,testplanname=autoplan,buildname=autobuild"
},
"repository": {
"type": "git",
"url": "https://github.com/AdmitadSDK/mocha-testlink-reporter.git"
},
"keywords": [
"mocha",
"testlink",
"reporter"
],
"author": "Vaagn Khachatryan <[email protected]> (https://www.admitad.com/)",
"license": "MIT",
"devDependencies": {
"mocha": "^6.2.0",
"eslint": "^6.2.2",
"eslint-config-standard": "^14.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1"
},
"dependencies": {
"testlink-xmlrpc": "^1.9.18-5"
},
"peerDependencies": {
"mocha": "^6.2.0"
}
}