forked from Vivify-Ideas/cypress-testrail-reporter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.19 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
{
"name": "@deliveryhero/logistics-cypress-testrail-reporter",
"version": "1.3.2",
"description": "A Testrail reporter for cypress including TestRail API basic library",
"main": "index.js",
"private": false,
"keywords": [
"cypress",
"testrail",
"reporter"
],
"author": {
"name": "Milutin Savovic",
"email": "[email protected]"
},
"license": "MIT",
"readmeFilename": "README.md",
"repository": "git://github.com/deliveryhero/cypress-testrail-reporter.git",
"bugs": {
"url": "https://github.com/Vivify-Ideas/cypress-testrail-reporter/issues"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/deliveryhero"
},
"scripts": {
"tsc": "tsc",
"clean": "rimraf dist",
"build": "yarn run clean && yarn run tsc",
"deploy": "yarn run build && yarn publish",
"prepublish": "yarn run build"
},
"dependencies": {
"axios": "^0.18.0",
"btoa": "^1.1.2",
"chalk": "^2.4.1",
"mocha": "^5.2.0",
"moment": "^2.22.1"
},
"devDependencies": {
"@types/chai": "^3.4.34",
"@types/mocha": "^2.2.36",
"@types/node": "^6.0.58",
"chai": "^3.5.0",
"rimraf": "^2.5.4",
"typescript": "^2.1.4"
}
}