UNPKG

rollup-plugin-babel

Version:

Seamless integration between Rollup and Babel.

57 lines (56 loc) 1.57 kB
{ "name": "rollup-plugin-babel", "version": "2.4.0", "description": "Seamless integration between Rollup and Babel.", "main": "dist/rollup-plugin-babel.cjs.js", "jsnext:main": "dist/rollup-plugin-babel.es6.js", "files": [ "src", "dist", "README" ], "keywords": [ "rollup-plugin", "babel", "es2015", "es6" ], "homepage": "https://github.com/rollup/rollup-plugin-babel", "author": "Rich Harris", "contributors": [ "Bogdan Chadkin <trysound@yandex.ru>" ], "license": "MIT", "scripts": { "test": "mocha --compilers js:babel-register", "prepublish": "npm run test", "pretest": "npm run build", "build": "rollup -c -f cjs -o dist/rollup-plugin-babel.cjs.js && rollup -c -f es6 -o dist/rollup-plugin-babel.es6.js", "prebuild": "rm -rf dist/*" }, "dependencies": { "babel-core": "6", "babel-plugin-transform-es2015-classes": "^6.3.15", "object-assign": "^4.0.1", "rollup-pluginutils": "^1.1.0" }, "devDependencies": { "babel-plugin-transform-decorators-legacy": "^1.3.4", "babel-plugin-transform-runtime": "^6.3.13", "babel-preset-es2015": "^6.1.18", "babel-preset-es2015-rollup": "^1.0.0", "babel-register": "^6.3.13", "eslint": "^1.7.2", "mocha": "^2.3.3", "rollup": "^0.24.0", "rollup-plugin-babel": "^2.2.0", "source-map": "^0.5.3" }, "repository": { "type": "git", "url": "git+https://github.com/rollup/rollup-plugin-babel.git" }, "bugs": { "url": "https://github.com/rollup/rollup-plugin-babel/issues" } }