This repository has been archived by the owner on Dec 9, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
70 lines (70 loc) · 1.8 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
64
65
66
67
68
69
70
{
"name": "cypress-multi-reporters",
"version": "1.6.0",
"description": "Generate multiple mocha reports in a single mocha execution.",
"main": "index.js",
"nyc": {
"reporter": [
"html",
"text"
]
},
"scripts": {
"devtest": "nyc mocha --require node_modules/chai/register-expect --no-coverage --timeout 5000 tests/**/*.test.js*",
"lint": "eslint .",
"test": "nyc mocha --require node_modules/chai/register-expect --timeout 5000 tests/**/*.test.js*",
"deploy:prepare": "./scripts/create_npmrc_file.sh",
"release": "standard-version --release-as 1.6.1",
"release:trigger": "./scripts/trigger-release.sh"
},
"author": "Stanley Ng <[email protected]",
"contributors": [
"Yousaf Nabi <[email protected]>",
"Brett Zamir"
],
"repository": {
"type": "git",
"url": "https://github.com/you54f/cypress-multi-reporters"
},
"engines": {
"node": ">=6.0.0"
},
"bugs": "https://github.com/you54f/cypress-multi-reporters/issues",
"homepage": "https://github.com/you54f/cypress-multi-reporters",
"license": "MIT",
"dependencies": {
"debug": "^4.1.1",
"lodash": "^4.17.15"
},
"devDependencies": {
"@commitlint/cli": "12.1.4",
"@commitlint/config-conventional": "12.1.4",
"chai": "4.3.6",
"coveralls": "3.1.1",
"eslint": "7.32.0",
"eslint-config-defaults": "9.0.0",
"husky": "6.0.0",
"mocha": "8.4.0",
"mocha-lcov-reporter": "1.3.0",
"nyc": "15.1.0",
"sinon": "13.0.2",
"standard-version": "9.5.0"
},
"peerDependencies": {
"mocha": ">=3.1.2"
},
"keywords": [
"mocha",
"reporter"
],
"eslintConfig": {
"extends": "defaults"
},
"husky": {
"hooks": {
"lint": "lint",
"test": "test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}