-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.63 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
{
"name": "webpack-plugin-istanbul",
"version": "1.0.3",
"description": "Minimal Webpack5 plugin for instrumenting code coverage using istanbul",
"repository": "sheriffMoose/webpack-plugin-istanbul",
"homepage": "https://github.com/sheriffMoose/webpack-plugin-istanbul#readme",
"funding": "https://github.com/sheriffMoose/webpack-plugin-istanbul?sponsor=1",
"license": "MIT",
"keywords": [
"webpack",
"webpack5",
"plugin",
"istanbul",
"coverage",
"instrumentation"
],
"author": {
"name": "Mostafa Sherif",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/sheriffMoose/webpack-plugin-istanbul/issues"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"engines": {
"node": ">=16"
},
"files": [
"dist/*"
],
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js"
},
"./loader": "./dist/loader.js"
},
"scripts": {
"build": "tsc",
"build:watch": "tsc -w",
"prerelease": "npm run build",
"release": "auto shipit"
},
"dependencies": {
"istanbul-lib-instrument": "^5.2.1",
"test-exclude": "^6.0.0"
},
"peerDependencies": {
"webpack": ">= 5"
},
"devDependencies": {
"@types/node": "^18.11.18",
"@types/ws": "^8.5.3",
"auto": "^10.37.6",
"nodemon": "^2.0.20",
"rollup": "^3.11.0",
"tslib": "^2.5.0",
"typescript": "^4.8.2",
"unbuild": "^1.1.1",
"webpack": "^5.75.0"
}
}