UNPKG

1.16 kBJSONView Raw
1{
2 "name": "rollup-plugin-multi-entry",
3 "version": "1.0.1",
4 "description": "Allows specifying multiple entry points with rollup.",
5 "main": "dist/rollup-plugin-multi-entry.cjs.js",
6 "jsnext:main": "dist/rollup-plugin-multi-entry.es6.js",
7 "scripts": {
8 "build": "rm -rf dist && rollup -c rollup.cjs.config.js && rollup -c rollup.es6.config.js",
9 "pretest": "npm run build",
10 "test": "mocha test.js",
11 "prepublish": "npm test"
12 },
13 "repository": {
14 "type": "git",
15 "url": "git+https://github.com/eventualbuddha/rollup-plugin-multi-entry.git"
16 },
17 "keywords": [
18 "rollup-plugin"
19 ],
20 "files": [
21 "dist"
22 ],
23 "author": "Brian Donovan <me@brian-donovan.com>",
24 "license": "MIT",
25 "bugs": {
26 "url": "https://github.com/eventualbuddha/rollup-plugin-multi-entry/issues"
27 },
28 "homepage": "https://github.com/eventualbuddha/rollup-plugin-multi-entry#readme",
29 "dependencies": {
30 "glob": "^6.0.1"
31 },
32 "devDependencies": {
33 "babel-plugin-transform-flow-strip-types": "^6.1.18",
34 "babel-preset-es2015-rollup": "^1.0.0",
35 "mocha": "^2.3.4",
36 "rollup": "^0.21.1",
37 "rollup-plugin-babel": "^2.2.0"
38 }
39}