This repository was archived by the owner on Aug 5, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.41 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.41 KB
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
45
46
47
48
49
50
51
{
"version": "0.0.0-development",
"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": {
"flow": "flow check",
"build": "rm -rf dist && rollup -c",
"pretest": "npm run flow && npm run build",
"test": "mocha",
"prepare": "npm run build",
"prepublishOnly": "npm test"
},
"repository": {
"type": "git",
"url": "https://github.com/rollup/rollup-plugin-multi-entry.git"
},
"keywords": [
"rollup-plugin"
],
"files": [
"dist"
],
"author": "Brian Donovan <me@brian-donovan.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/rollup/rollup-plugin-multi-entry/issues"
},
"homepage": "https://github.com/rollup/rollup-plugin-multi-entry#readme",
"dependencies": {
"matched": "^1.0.2"
},
"devDependencies": {
"@babel/core": "^7.2.0",
"@babel/plugin-transform-flow-strip-types": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"@babel/register": "^7.0.0",
"@commitlint/config-conventional": "^8.0.0",
"commitlint": "^8.0.0",
"flow-bin": "^0.101.0",
"globby": "^9.2.0",
"husky": "^2.4.1",
"lint-staged": "^8.1.0",
"mocha": "^6.1.4",
"prettier": "^1.9.2",
"prettier-check": "^2.0.0",
"rollup": "^1.15.1",
"rollup-plugin-babel": "^4.0.3"
}
}