-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
41 lines (41 loc) · 1006 Bytes
/
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
{
"name": "rollup-plugin-html",
"version": "0.2.1",
"description": "HTML import plugin for rollup",
"main": "dist/rollup-plugin-html.js",
"jsnext:main": "dist/rollup-plugin-html.mjs",
"files": [
"dist"
],
"dependencies": {
"html-minifier": "^3.0.2",
"rollup-pluginutils": "^1.5.0"
},
"devDependencies": {
"buble": "^0.10.6",
"mocha": "^2.5.3",
"rollup": "^0.31.2",
"rollup-plugin-buble": "^0.10.0"
},
"scripts": {
"build": "rollup -c",
"pretest": "npm run build",
"test": "mocha test/*.js --compilers js:buble/register",
"prepublish": "npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bdadam/rollup-plugin-html.git"
},
"keywords": [
"rollup",
"rollup-plugin",
"html"
],
"author": "Adam Beres-Deak <me@bdadam.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bdadam/rollup-plugin-html/issues"
},
"homepage": "https://github.com/bdadam/rollup-plugin-html"
}