forked from b-yond-infinite-network/jest-cucumber-fusion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 1.85 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
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "jest-cucumber-fusion",
"version": "0.0.0-semantically-released",
"description": "Write cucumber test as part of a jest run (including coverage)",
"main": "src/index.js",
"types": "src/index.d.ts",
"scripts": {
"test": "jest --color",
"coverage": "codecov",
"commit": "git-cz",
"semantic-release": "semantic-release",
"fmt": "npx prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/b-yond-infinite-network/jest-cucumber-fusion.git"
},
"keywords": [
"jest",
"cucumber",
"BDD",
"gherkin"
],
"dependencies": {
"callsites": "~3.1.0",
"jest-cli": "^27.0.3",
"jest-cucumber": "^3.0.2"
},
"devDependencies": {
"codecov": "~4.0.0-0",
"cz-conventional-changelog": "^3.3.0",
"prettier": "2.3.2",
"semantic-release": "^17.4.3"
},
"publishConfig": {
"access": "public"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/github",
{
"assets": [
"dist/**"
]
}
],
[
"@semantic-release/npm",
{
"npmPublish": true
}
]
],
"parserOpts": {
"mergePattern": "Merged PR .*:"
}
},
"author": "B-Yond",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/b-yond-infinite-network/jest-cucumber-fusion/issues"
},
"homepage": "https://github.com/b-yond-infinite-network/jest-cucumber-fusion#readme",
"jest": {
"testMatch": [
"**/*.steps.js"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/"
],
"coverageDirectory": "./coverage/",
"collectCoverage": true
}
}