forked from gianlucamangiapelo/wdio-azure-devops-service
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.28 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.28 KB
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
{
"name": "wdio-azure-devops-service-ts",
"version": "1.0.3",
"description": "Wdio Service to inject result of automatic test run in Azure DevOps TestPlan",
"type": "module",
"types": "dist/esm/index.d.ts",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"scripts": {
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable",
"build": "rollup -c",
"clean": "node tools/cleanup",
"package": "npm run build && npm pack",
"test": "jest --no-cache --runInBand --passWithNoTests",
"test:cov": "jest --coverage --no-cache --runInBand"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"keywords": [
"wdio service",
"azure Devops",
"test",
"test plan",
"reporter",
"azure",
"typescript",
"cjs",
"esm"
],
"author": "Vivek Dhayalan <vivek.dhayalan@techconative.com>",
"license": "MIT",
"homepage": "https://github.com/techconative/wdio-azure-devops-service",
"repository": {
"type": "git",
"url": "git@github.com:techconative/wdio-azure-devops-service.git"
},
"bugs": {
"url": "https://github.com/techconative/wdio-azure-devops-service/issues"
},
"dependencies": {
"@cucumber/cucumber": "^8.2.1",
"@cucumber/messages": "^18.0.0",
"@wdio/reporter": "^7.19.7",
"@wdio/types": "^7.19.5",
"azure-devops-node-api": "^11.1.1",
"azuredevops-test-reporter-ts": "^1.0.4",
"validate": "^5.2.0"
},
"devDependencies": {
"@commitlint/cli": "^19.1.0",
"@commitlint/config-conventional": "^19.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@semantic-release/git": "^10.0.1",
"@types/jest": "^27.0.1",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.2",
"jest": "^27.2.0",
"pinst": "^2.1.6",
"prettier": "^2.4.0",
"rollup": "^4.14.1",
"semantic-release": "^23.0.8",
"ts-jest": "^27.0.5",
"ts-loader": "^9.2.5",
"typescript": "^4.4.3"
}
}