-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.23 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
{
"name": "rollup-plugin-worker-dom-html",
"version": "1.0.0",
"main": "dist/rollup-plugin-worker-dom-html.js",
"module": "dist/rollup-plugin-worker-dom-html.m.js",
"source": "index.js",
"files": [
"dist"
],
"scripts": {
"build": "microbundle --format es,cjs",
"test": "rollup -w -c example/rollup.config.js",
"prepublish": "npm run build"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"microbundle": "*",
"preact": "^8.3.1",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"rollup": "^0.64.1",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-commonjs": "^9.1.5",
"rollup-plugin-node-globals": "^1.2.1",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-serve": "^0.4.2",
"rollup-plugin-typescript2": "^0.16.1",
"rollup-pluginutils": "^2.3.1",
"typescript": "^3.0.1"
},
"dependencies": {
"@ampproject/worker-dom": "^0.1.0",
"cheerio": "^1.0.0-rc.2",
"fs-extra": "^7.0.0",
"html-minifier": "^3.5.20"
},
"keywords": [
"rollup",
"rollup-plugin",
"worker-dom",
"html"
]
}