forked from thgh/rollup-plugin-serve
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1 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-serve",
"version": "1.0.0",
"description": "Serve your rolled up bundle",
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"scripts": {
"build": "rollup -c",
"dev": "rollup -cw",
"lint": "standard --fix rollup.config.js src/**",
"prepare": "yarn lint && yarn build",
"test": "cd test && rollup -c || cd .."
},
"keywords": [
"rollup",
"rollup-plugin",
"serve",
"dev-server",
"static"
],
"license": "MIT",
"author": "Thomas Ghysels <info@thomasg.be>",
"homepage": "https://github.com/thgh/rollup-plugin-serve",
"bugs": {
"url": "https://github.com/thgh/rollup-plugin-serve/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/thgh/rollup-plugin-serve"
},
"files": [
"dist"
],
"dependencies": {
"mime": ">=2.0.3",
"opener": "1"
},
"devDependencies": {
"rollup": "1",
"rollup-plugin-buble": "^0.15.0",
"standard": "12"
}
}