package.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. {
  2. "name": "find-babel-config",
  3. "version": "1.2.0",
  4. "main": "lib/index.js",
  5. "description": "Find the closest babel config based on a directory",
  6. "repository": {
  7. "type": "git",
  8. "url": "https://github.com/tleunen/find-babel-config.git"
  9. },
  10. "engines": {
  11. "node": ">=4.0.0"
  12. },
  13. "author": "Tommy Leunen <tommy.leunen@gmail.com> (http://tommyleunen.com)",
  14. "license": "MIT",
  15. "keywords": [
  16. "babel",
  17. "config",
  18. "loader",
  19. "finder",
  20. "babelrc"
  21. ],
  22. "dependencies": {
  23. "json5": "^0.5.1",
  24. "path-exists": "^3.0.0"
  25. },
  26. "devDependencies": {
  27. "babel-cli": "^6.24.1",
  28. "babel-jest": "^20.0.0",
  29. "babel-preset-env": "^1.4.0",
  30. "eslint": "^3.19.0",
  31. "eslint-config-airbnb-base": "^11.1.3",
  32. "eslint-plugin-import": "^2.2.0",
  33. "jest": "^20.0.0",
  34. "standard-version": "^4.0.0"
  35. },
  36. "scripts": {
  37. "lint": "eslint src test",
  38. "pretest": "npm run lint",
  39. "test:coverage": "jest --coverage",
  40. "test:watch": "jest --watch",
  41. "test": "jest",
  42. "compile": "babel src --out-dir lib",
  43. "prepublish": "npm run compile",
  44. "release": "standard-version"
  45. },
  46. "jest": {
  47. "testRegex": "/test/.*\\.test\\.js$",
  48. "collectCoverageFrom": [
  49. "src/**/*.js"
  50. ]
  51. },
  52. "greenkeeper": {
  53. "ignore": [
  54. "eslint",
  55. "eslint-plugin-import",
  56. "babel-jest"
  57. ]
  58. }
  59. }