forked from thgh/rollup-plugin-serve
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.08 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
{
"name": "rollup-plugin-server",
"version": "0.7.0",
"description": "Server your rolled up bundle",
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"scripts": {
"build": "rollup -c -f cjs -o dist/index.cjs.js && rollup -c -f es -o dist/index.es.js",
"dev": "rollup -cw -f cjs -o dist/index.cjs.js",
"lint": "standard rollup.config.js src/**",
"prepublish": "npm run build"
},
"keywords": [
"rollup",
"rollup-plugin",
"serve",
"server",
"dev-server",
"static"
],
"license": "MIT",
"authors": "Kei Funagayama <[email protected]>",
"homepage": "https://github.com/fkei/rollup-plugin-server",
"bugs": {
"url": "https://github.com/fkei/rollup-plugin-server/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/fkei/rollup-plugin-server"
},
"files": [
"dist"
],
"dependencies": {
"mime": "^1.3.6",
"opener": "^1.4.3"
},
"devDependencies": {
"rollup": "^0.43.0",
"rollup-plugin-buble": "^0.15.0",
"rollup-watch": "^2.5.0"
}
}