UNPKG

740 BJSONView Raw
1{
2 "name": "rollup-plugin-buble",
3 "description": "Compile ES2015 with buble",
4 "version": "0.19.0",
5 "author": "Rich Harris",
6 "repository": "https://gitlab.com/rich-harris/rollup-plugin-buble",
7 "license": "MIT",
8 "main": "dist/rollup-plugin-buble.cjs.js",
9 "module": "dist/rollup-plugin-buble.es.js",
10 "scripts": {
11 "build": "rollup -c",
12 "test": "mocha test/test.js",
13 "pretest": "npm run build",
14 "prepublish": "npm run lint && rm -rf dist && npm test",
15 "lint": "eslint src"
16 },
17 "files": [
18 "dist",
19 "README.md"
20 ],
21 "devDependencies": {
22 "eslint": "^4.7.2",
23 "mocha": "^3.5.3",
24 "rollup": "^0.55.4"
25 },
26 "dependencies": {
27 "buble": "^0.19.0",
28 "rollup-pluginutils": "^2.0.1"
29 }
30}