forked from qase-tms/qase-javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.52 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
{
"name": "jest-qase-reporter",
"version": "v1.3.0-alpha.4",
"description": "Qase TMS Jest 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": "jest --coverage",
"clean": "rm -rf dist || true"
},
"author": {
"name": "Parviz Khavari",
"email": "[email protected]"
},
"license": "Apache-2.0",
"dependencies": {
"qaseio": "^2.0.0-alpha.5"
},
"devDependencies": {
"@hutson/npm-deploy-git-tag": "^6.0.0",
"@jest/reporters": "^27.0.4",
"@types/chalk": "^2.2.0",
"@types/deasync": "^0.1.1",
"@types/jest": "^23.3.7",
"@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",
"chalk": "^4.1.0",
"eslint": "^7.14.0",
"eslint-plugin-jsdoc": "^26.0.1",
"eslint-plugin-prefer-arrow": "^1.2.2",
"handlebars": "^4.7.7",
"jest": "^26.6.3",
"nodemon": "^2.0.6",
"ts-jest": "^26.4.4",
"typescript": "^3.9.7"
}
}