forked from qase-tms/qase-javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.69 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
{
"name": "cucumberjs-qase-reporter",
"version": "v0.2.8-alpha.1",
"description": "Qase TMS CucumberJS Reporter",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"homepage": "",
"bugs": {
"url": "https://github.com/qase-tms/qase-javascript/"
},
"repository": {
"type": "git",
"url": ""
},
"engines": {
"node": ">=10"
},
"scripts": {
"dev": "npm run lint && tsc",
"dev:watch": "nodemon --exec 'npm run dev || exit 1'",
"lint": "eslint src/**",
"lint:fix": "eslint --fix src/**",
"build": "npm run clean && npm run dev",
"test": "jest --coverage",
"clean": "rm -rf dist || true",
"example": "npm run build && cd examples && npm run test-zombie"
},
"author": {
"name": "Parviz Khavari",
"email": "[email protected]"
},
"license": "Apache-2.0",
"devDependencies": {
"@cucumber/cucumber": "^7.0.0",
"@cucumber/messages": "^14.0.1",
"@hutson/npm-deploy-git-tag": "^6.0.0",
"@types/jest": "^23.3.7",
"@types/long": "^4.0.1",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/eslint-plugin-tslint": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"ansi-regex": "^6.0.1",
"axios-mock-adapter": "^1.19.0",
"eslint": "^7.17.0",
"eslint-plugin-jsdoc": "^26.0.1",
"eslint-plugin-prefer-arrow": "^1.2.1",
"handlebars": "^4.7.7",
"jest": "^26.6.3",
"json-schema": "^0.4.0",
"long": "^4.0.0",
"nodemon": "^2.0.7",
"ts-jest": "^26.4.4",
"typescript": "^3.9.3"
},
"dependencies": {
"chalk": "^4.1.0",
"file-type": "^17.1.1",
"mime-types": "^2.1.35",
"moment": "^2.29.1",
"qaseio": "^2.0.1",
"read-chunk": "^4.0.2"
}
}