forked from rollup/rollup-plugin-multi-entry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 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
{
"name": "rollup-plugin-multi-entry",
"description": "Allows specifying multiple entry points with rollup.",
"main": "dist/rollup-plugin-multi-entry.js",
"jsnext:main": "dist/rollup-plugin-multi-entry.mjs",
"scripts": {
"build": "rm -rf dist && rollup -c",
"pretest": "npm run build",
"test": "mocha",
"prepublish": "npm test",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/rollup/rollup-plugin-multi-entry.git"
},
"keywords": [
"rollup-plugin"
],
"files": [
"dist"
],
"author": "Brian Donovan <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/rollup/rollup-plugin-multi-entry/issues"
},
"homepage": "https://github.com/rollup/rollup-plugin-multi-entry#readme",
"dependencies": {
"glob": "^7.0.5"
},
"devDependencies": {
"babel-plugin-transform-flow-strip-types": "^6.8.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-es2015-rollup": "^1.1.1",
"babel-register": "^6.9.0",
"babelrc-rollup": "^1.1.0",
"mocha": "^2.5.3",
"rollup": "^0.33.0",
"rollup-plugin-babel": "^2.6.1",
"semantic-release": "^4.3.5"
}
}