package.json 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. {
  2. "name": "babel-loader",
  3. "version": "6.4.1",
  4. "description": "babel module loader for webpack",
  5. "files": [
  6. "lib"
  7. ],
  8. "main": "lib/index.js",
  9. "dependencies": {
  10. "find-cache-dir": "^0.1.1",
  11. "loader-utils": "^0.2.16",
  12. "mkdirp": "^0.5.1",
  13. "object-assign": "^4.0.1"
  14. },
  15. "peerDependencies": {
  16. "babel-core": "^6.0.0",
  17. "webpack": "1 || 2 || ^2.1.0-beta || ^2.2.0-rc"
  18. },
  19. "devDependencies": {
  20. "ava": "^0.17.0",
  21. "babel-cli": "^6.18.0",
  22. "babel-core": "^6.0.0",
  23. "babel-eslint": "^7.1.0",
  24. "babel-plugin-istanbul": "^3.0.0",
  25. "babel-plugin-react-intl": "^2.1.3",
  26. "babel-preset-es2015": "^6.0.0",
  27. "babel-preset-latest": "^6.16.0",
  28. "babel-register": "^6.18.0",
  29. "codecov": "^1.0.1",
  30. "cross-env": "^2.0.0",
  31. "eslint": "^3.8.1",
  32. "eslint-config-babel": "^6.0.0",
  33. "eslint-plugin-flowtype": "^2.25.0",
  34. "nyc": "^10.0.0",
  35. "react": "^15.1.0",
  36. "react-intl": "^2.1.2",
  37. "react-intl-webpack-plugin": "^0.0.3",
  38. "rimraf": "^2.4.3",
  39. "webpack": "^2.2.0-rc"
  40. },
  41. "scripts": {
  42. "clean": "rimraf lib/",
  43. "build": "babel src/ --out-dir lib/",
  44. "coverage": "nyc report --reporter=json && codecov -f coverage/coverage-final.json",
  45. "lint": "eslint src test",
  46. "preversion": "npm test",
  47. "prepublish": "npm run clean && npm run build",
  48. "test": "npm run lint && cross-env BABEL_ENV=test npm run build && npm run test-only",
  49. "test-ci": "cross-env BABEL_ENV=test npm run build && npm run test-only",
  50. "test-only": "nyc ava"
  51. },
  52. "repository": {
  53. "type": "git",
  54. "url": "https://github.com/babel/babel-loader.git"
  55. },
  56. "keywords": [
  57. "webpack",
  58. "loader",
  59. "babel",
  60. "es6",
  61. "transpiler",
  62. "module"
  63. ],
  64. "author": "Luis Couto <hello@luiscouto.pt>",
  65. "license": "MIT",
  66. "bugs": {
  67. "url": "https://github.com/babel/babel-loader/issues"
  68. },
  69. "homepage": "https://github.com/babel/babel-loader",
  70. "nyc": {
  71. "all": true,
  72. "include": [
  73. "src/**/*.js"
  74. ],
  75. "require": [
  76. "babel-register"
  77. ],
  78. "sourceMap": false,
  79. "instrument": false
  80. },
  81. "ava": {
  82. "files": [
  83. "test/**/*.test.js",
  84. "!test/fixtures/**/*",
  85. "!test/helpers/**/*"
  86. ],
  87. "source": [
  88. "src/**/*.js"
  89. ],
  90. "babel": "inherit"
  91. },
  92. "__npminstall_done": "Mon May 18 2020 19:19:02 GMT+0800 (CST)",
  93. "_from": "babel-loader@6.4.1",
  94. "_resolved": "https://registry.npm.taobao.org/babel-loader/download/babel-loader-6.4.1.tgz?cache=0&sync_timestamp=1584715959282&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fbabel-loader%2Fdownload%2Fbabel-loader-6.4.1.tgz"
  95. }