-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
137 lines (137 loc) Β· 3.35 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
{
"name": "jest-allure2-reporter",
"version": "2.0.0",
"description": "Idiomatic Jest reporter for Allure Framework",
"license": "MIT",
"keywords": [
"allure",
"allure2",
"jest",
"jest-reporter",
"reporter"
],
"authors": [
"Yaroslav Serhieiev <[email protected]>"
],
"repository": {
"type": "git",
"url": "git+https://github.com/wix-incubator/jest-allure2-reporter.git"
},
"engines": {
"node": ">=16.20.0"
},
"main": "./index.js",
"typings": "./index.d.ts",
"exports": {
".": {
"import": "./index.mjs",
"require": "./index.js",
"types": "./index.d.ts"
},
"./api": {
"import": "./api.mjs",
"require": "./api.js",
"types": "./dist/api/index.d.ts"
},
"./globals": {
"import": "./globals.mjs",
"require": "./globals.js",
"types": "./globals.d.ts"
},
"./environment-listener": {
"import": "./environment-listener.mjs",
"require": "./environment-listener.js",
"types": "./dist/environment/listener.d.ts"
},
"./environment-jsdom": {
"import": "./environment-jsdom.mjs",
"require": "./environment-jsdom.js",
"types": "./dist/environment/jsdom.d.ts"
},
"./environment-node": {
"import": "./environment-node.mjs",
"require": "./environment-node.js",
"types": "./dist/environment/node.d.ts"
},
"./package.json": "./package.json"
},
"files": [
"*.js",
"*.mjs",
"*.d.ts",
"!.*.js",
"!*.config.js",
"src",
"dist",
"!**/__*__",
"!**/*.test.*"
],
"scripts": {
"prepare": "husky install",
"prepack": "tsc",
"build": "tsc",
"lint": "eslint . --fix",
"lint:ci": "eslint .",
"lint:staged": "lint-staged",
"test": "jest"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@types/fs-extra": "^11.0.0",
"@types/jest": "^29.0.0",
"@types/lodash": "^4.14.186",
"@types/node": "^16.0.0",
"@types/node-fetch": "^2.6.9",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-ecmascript-compat": "^3.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsdoc": "^48.0.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-unicorn": "^47.0.0",
"fs-extra": "^10.1.0",
"husky": "^8.0.1",
"jest": "^29.0.0",
"jest-environment-jsdom": "^29.0.0",
"lint-staged": "^14.0.1",
"semantic-release": "^22.0.5",
"ts-jest": "^29.0.0",
"typescript": "5.x.x"
},
"dependencies": {
"bunyamin": "^1.6.1",
"properties": "^1.2.1",
"ci-info": "^3.8.0",
"handlebars": "^4.7.8",
"import-from": "^4.0.0",
"jest-metadata": "^1.5.3",
"lodash": "^4.17.21",
"node-fetch": "^2.6.7",
"pkg-up": "^3.1.0",
"stacktrace-js": "^2.0.2",
"strip-ansi": "^6.0.0",
"uuid": "^8.3.2"
},
"peerDependencies": {
"jest": ">=27.2.5",
"jest-docblock": ">=27.2.5"
},
"peerDependenciesMeta": {
"jest": {
"optional": true
},
"jest-docblock": {
"optional": true
}
},
"browserslist": [
"node 16"
]
}