package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "systemjs-plugin-babel",
  3. "version": "0.0.25",
  4. "registry": "npm",
  5. "jspmPackage": true,
  6. "repository": {
  7. "type": "git",
  8. "url": "http://github.com/systemjs/plugin-babel.git"
  9. },
  10. "license": "MIT",
  11. "bugs": {
  12. "url": "https://github.com/systemjs/plugin-babel/issues"
  13. },
  14. "homepage": "https://github.com/systemjs/plugin-babel",
  15. "scripts": {
  16. "build": "./build.sh",
  17. "clear": "rm -rf build-babel/node_modules build-babel/jspm_packages regenerator-runtime.js systemjs-babel-node.js systemjs-babel-browser.js",
  18. "test": "node test/index.js"
  19. },
  20. "main": "plugin-babel.js",
  21. "map": {
  22. "systemjs-babel-build": {
  23. "node": "./systemjs-babel-node.js",
  24. "browser": "./systemjs-babel-browser.js",
  25. "default": "./systemjs-babel-browser.js"
  26. }
  27. },
  28. "meta": {
  29. "./plugin-babel.js": {
  30. "format": "cjs"
  31. }
  32. },
  33. "files": [
  34. "plugin-babel.js",
  35. "babel-helpers",
  36. "babel-helpers.js",
  37. "regenerator-runtime.js",
  38. "systemjs-babel-browser.js",
  39. "systemjs-babel-node.js"
  40. ],
  41. "devDependencies": {
  42. "browser-run": "^3.2.0",
  43. "systemjs": "^0.20.14",
  44. "tape": "^4.6.0"
  45. }
  46. }