-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.16 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
{
"name": "rollup-plugin-bundle-fonts",
"type": "module",
"version": "1.0.1",
"description": "Rollup plugin to download http fonts referenced in css files",
"main": "dist/rollup-plugin-bundle-fonts.cjs.js",
"module": "dist/rollup-plugin-bundle-fonts.es.js",
"exports": {
".": {
"default": "./dist/rollup-plugin-bundle-fonts.es.js",
"require": "./dist/rollup-plugin-bundle-fonts.cjs.js"
}
},
"files": [
"dist"
],
"keywords": [
"rollup",
"rollup-plugin"
],
"homepage": "https://github.com/mgreminger/rollup-plugin-bundle-fonts",
"author": "Michael Greminger",
"license": "MIT",
"repository": "https://github.com/mgreminger/rollup-plugin-bundle-fonts",
"bugs": {
"url": "https://github.com/mgreminger/rollup-plugin-bundle-fonts/issues"
},
"scripts": {
"prebuild": "rimraf -rf dist/*",
"build": "rollup -c",
"test": "ava",
"pretest": "npm run build"
},
"dependencies": {
"@rollup/pluginutils": "^5.0.2",
"magic-string": "^0.27.0",
"node-fetch": "^3.3.0"
},
"devDependencies": {
"ava": "^5.1.1",
"expect": "^29.3.1",
"rimraf": "^2.6.3",
"rollup": "^3.10.1"
}
}