-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
105 lines (105 loc) · 2.84 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "@ssense/cucumber-testrail-sync",
"version": "3.0.5",
"description": "Synchronize test cases from TestRail & pushes Cucumber results",
"bin": {
"cucumber-testrail-sync": "./dist/bin/sync-test-cases.js",
"push-result-to-testrail": "./dist/bin/push-test-result.js"
},
"main": "./dist/index.js",
"scripts": {
"compile": "rm -rf dist/* && tsc",
"lint": "tslint ./src/{,**/}*.ts ./tests/{,**/}*.ts --format verbose",
"test": "npm run test:unit && npm run test:bdd",
"test:unit": "NODE_ENV=test mocha tests/unit --recursive --compilers ts:ts-node/register --bail",
"test:bdd": "NODE_ENV=test cucumberjs tests/bdd -r tests/bdd --compiler ts:ts-node/register --fail-fast",
"cover": "npm run cover:unit && npm run cover:bdd && npm run cover:merge",
"cover:unit": "NODE_ENV=test nyc --report-dir tests/coverage/unit npm run test:unit",
"cover:bdd": "NODE_ENV=test nyc --report-dir tests/coverage/bdd npm run test:bdd",
"cover:merge": "rm -rf ./tests/coverage/final && node ./tests/coverage/merge.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SSENSE/node-cucumber-testrail-sync.git"
},
"keywords": [
"cucumber",
"testrail",
"bdd",
"qa"
],
"author": "Mickael Burguet <www.rundef.com>",
"publishConfig": {
"access": "public"
},
"license": "MIT",
"engines": {
"node": ">= 6.2.0",
"npm": ">= 3"
},
"dependencies": {
"chalk": "^1.1.3",
"commander": "^2.9.0",
"diff": "^3.0.0",
"handlebars": "^4.0.5",
"inquirer": "^1.0.3",
"joi": "^8.4.2",
"lodash": "^4.13.1",
"mkdirp": "^0.5.1",
"testrail-api": "1.0.6",
"uniquefilename": "1.1.1",
"walkdir": "0.0.11"
},
"devDependencies": {
"@ssense/tslint-config": "^1.0.1",
"@types/chai": "^3.4.34",
"@types/chalk": "^0.4.31",
"@types/commander": "^2.3.31",
"@types/diff": "0.0.31",
"@types/glob": "^5.0.30",
"@types/handlebars": "^4.0.31",
"@types/inquirer": "0.0.32",
"@types/joi": "^10.0.0",
"@types/lodash": "^4.14.50",
"@types/mkdirp": "^0.3.29",
"@types/mocha": "^2.2.37",
"@types/mock-fs": "^3.6.30",
"@types/nock": "^8.2.0",
"@types/node": "^7.0.0",
"@types/string": "0.0.28",
"chai": "^3.5.0",
"coveralls": "^2.11.14",
"cucumber": "^1.2.2",
"glob": "^7.0.6",
"mocha": "^2.5.3",
"mock-fs": "^4.2.0",
"nock": "^8.0.0",
"nyc": "^8.4.0",
"ts-node": "^5.0.1",
"tslint": "^3.14.0",
"typescript": "^2.0.3"
},
"nyc": {
"include": [
"src/ResultSynchronizer.ts",
"src/ScenarioSynchronizer.ts"
],
"exclude": [
"node_modules",
"index.d.ts",
"typings.d.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"json",
"html",
"lcov"
],
"all": true
}
}