-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 849 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
{
"name": "@emmiep/rollup-plugin-split-bundle",
"version": "1.0.0",
"description": "An experimental bundle splitter plugin for Rollup",
"main": "dist/rollup-plugin-split-bundle.cjs.js",
"module": "dist/rollup-plugin-split-bundle.es.js",
"author": "Emmie Päivärinta <Emmie.Paivarinta@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/emmiep/rollup-plugin-split-bundle.git"
},
"keywords": [
"rollup-plugin",
"bundle splitting"
],
"scripts": {
"build": "$npm_execpath run clean && rollup -c",
"watch": "$npm_execpath run build -w",
"clean": "rm -rf ./dist",
"prepublish": "$npm_execpath run build"
},
"dependencies": {
"rollup": "^0.56.5",
"rollup-plugin-typescript2": "^0.12.0",
"rollup-watch": "^4.3.1",
"typescript": "^2.7.2"
}
}