forked from qase-tms/qase-javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.53 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
{
"name": "playwright-qase-reporter",
"version": "v1.2.0-alpha.5",
"description": "Qase TMS Playwright Reporter",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"homepage": "https://github.com/qase-tms/qase-javascript",
"bugs": {
"url": "https://github.com/qase-tms/qase-javascript/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/qase-tms/qase-javascript.git"
},
"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": "npx playwright test",
"clean": "rm -rf dist || true"
},
"author": {
"name": "Aleksei Galagan",
"email": "[email protected]",
"url": "https://github.com/alexneo2003/"
},
"license": "Apache-2.0",
"dependencies": {
"qaseio": "^2.0.1",
"form-data": "^3.0.0",
"chalk": "^4.1.0"
},
"devDependencies": {
"@hutson/npm-deploy-git-tag": "^6.0.0",
"@playwright/test": "^1.16.3",
"@types/chalk": "^2.2.0",
"@types/deasync": "^0.1.1",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/eslint-plugin-tslint": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"axios-mock-adapter": "^1.19.0",
"eslint": "^7.14.0",
"eslint-plugin-jsdoc": "^26.0.1",
"eslint-plugin-prefer-arrow": "^1.2.2",
"handlebars": "^4.7.7",
"nodemon": "^2.0.6",
"typescript": "^3.9.7"
}
}