-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
39 lines (39 loc) · 935 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
{
"name": "rollup-plugin-bundle-html",
"version": "0.2.2",
"description": "create html with the bundle file",
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"repository": "https://github.com/haifeng2013/rollup-plugin-bundle-html.git",
"bugs": "https://github.com/haifeng2013/rollup-plugin/issues",
"author": "louisx",
"license": "MIT",
"files": [
"src",
"dist",
"README.md"
],
"keywords": [
"rollup",
"rollup-plugin",
"html",
"bundle-html"
],
"scripts": {
"build": "rollup -c",
"eslint": "eslint src",
"prepublish": "npm run eslint && npm run build"
},
"devDependencies": {
"eslint": "^6.5.1",
"jasmine": "^3.1.0",
"rollup": "^1.1.0",
"rollup-plugin-buble": "^0.19.2",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-node-resolve": "^3.0.0"
},
"dependencies": {
"cheerio": "^1.0.0-rc.2",
"hasha": "^4.0.1"
}
}