-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.24 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.24 KB
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
{
"name": "rollup-plugin-copy-md-based-on-frontmatter",
"version": "0.0.1",
"description": "Rollup plugin to copy markdown files to the bundle. The destination of the markdown files is determined by what is in the frontmatter. A function can be supplied by the developer to determine the destination, or they can use the default destination function, which is described more in the docs.",
"main": "dist/rollup-starter-plugin.cjs.js",
"module": "dist/rollup-starter-plugin.es.js",
"files": [
"dist"
],
"keywords": [
"rollup",
"rollup-plugin",
"copy",
"markdown",
"frontmatter",
"front-matter",
"front matter"
],
"homepage": "https://github.com/RossHathaway/rollup-plugin-copy-md-based-on-frontmatter",
"author": "Ross Hathaway",
"license": "MIT",
"repository": "https://github.com/RossHathaway/rollup-plugin-copy-md-based-on-frontmatter",
"bugs": {
"url": "https://github.com/RossHathaway/rollup-plugin-copy-md-based-on-frontmatter/issues"
},
"scripts": {
"prebuild": "rimraf -rf dist/*",
"build": "rollup -c",
"test": "mocha"
},
"dependencies": {
"rollup-pluginutils": "^2.8.1"
},
"devDependencies": {
"mocha": "^7.2.0",
"rimraf": "^2.6.3",
"rollup": "^1.16.2"
}
}