-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.09 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2.09 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
84
85
86
87
88
89
90
{
"name": "codeceptjs-bshelper",
"version": "3.0.7",
"description": "Browserstack Publisher for Codecept JS tests",
"repository": {
"type": "git",
"url": "https://github.com/kobenguyent/codeceptjs-bshelper.git"
},
"scripts": {
"test": "nyc mocha -r ts-node/register test/**/*_test.ts --timeout 10000",
"semantic-release": "semantic-release",
"build": "tsc"
},
"keywords": [
"codeceptJS",
"codeceptjs",
"browserstack",
"codeceptjs-browserstack",
"codeceptjs-bs"
],
"author": "KobeNguyenT",
"license": "MIT",
"bugs": {
"url": "https://github.com/kobenguyent/codeceptjs-bshelper/issues"
},
"homepage": "https://github.com/kobenguyent/codeceptjs-bshelper#readme",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"devDependencies": {
"@commitlint/cli": "11.0.0",
"@commitlint/config-conventional": "11.0.0",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/mocha": "^9.1.0",
"@types/node": "^14.18.56",
"axios-mock-adapter": "1.21.5",
"chai": "^4.2.0",
"codeceptjs": "^3.3.0",
"eslint": "^6.6.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"husky": "^4.0.2",
"mocha": "^9.2.1",
"nyc": "^15.1.0",
"semantic-release": "^19.0.2",
"sinon": "^9.0.0",
"standard-version": "^9.1.1",
"ts-node": "^10.5.0"
},
"files": [
"dist/*"
],
"peerDependencies": {
"codeceptjs": "^3.3.0"
},
"dependencies": {
"axios": "^0.21.1",
"chalk": "^4.1.0",
"tinyurl": "^1.1.4",
"typescript": "^4.5.5"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"lines": 30,
"check-coverage": true,
"all": true,
"include": [
"src/**/!(*.test.*).[tj]s?(x)"
],
"exclude": [
"src/_tests_/**/*.*"
],
"reporter": [
"html",
"lcov",
"text",
"text-summary"
],
"report-dir": "coverage"
}
}