-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
58 lines (58 loc) · 1.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
{
"name": "rollup-plugin-istanbul",
"version": "5.0.1",
"description": "Seamless integration between Rollup and Istanbul.",
"main": "./dist/rollup-plugin-istanbul.cjs",
"exports": {
"import": "./dist/rollup-plugin-istanbul.mjs",
"require": "./dist/rollup-plugin-istanbul.cjs"
},
"files": ["src", "dist", "README.md", "CHANGELOG.md"],
"keywords": [
"rollup-plugin",
"istanbul",
"es2015",
"es6",
"rollup",
"coverage"
],
"homepage": "https://github.com/artberri/rollup-plugin-istanbul",
"author": {
"name": "Alberto Varela",
"email": "[email protected]",
"url": "https://www.albertovarela.net"
},
"license": "MIT",
"scripts": {
"prebuild": "rm -rf dist/*",
"build": "rollup -c",
"test": "mocha",
"prepare": "npm run build",
"prepublishOnly": "npm run check && npm test",
"check": "biome check"
},
"dependencies": {
"@rollup/pluginutils": "^5.1.2",
"istanbul-lib-instrument": "^6.0.3"
},
"devDependencies": {
"@biomejs/biome": "1.9.3",
"mocha": "^10.7.3",
"rollup": "^4.24.0"
},
"peerDependencies": {
"rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0"
},
"peerDependenciesMeta": {
"rollup": {
"optional": true
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/artberri/rollup-plugin-istanbul.git"
},
"bugs": {
"url": "https://github.com/artberri/rollup-plugin-istanbul/issues"
}
}