package.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "name": "next-compose-plugins",
  3. "version": "2.2.1",
  4. "description": "Provides a cleaner API for enabling and configuring plugins for next.js",
  5. "main": "lib/index.js",
  6. "files": [
  7. "lib"
  8. ],
  9. "scripts": {
  10. "build": "babel src -d lib",
  11. "watch": "babel --watch src -d lib",
  12. "lint": "eslint src",
  13. "lint:fix": "eslint --fix src",
  14. "pretest": "npm run build",
  15. "test": "jest --coverage lib",
  16. "test:watch": "jest --watch lib",
  17. "prepack": "rimraf lib/**/__tests__"
  18. },
  19. "repository": {
  20. "type": "git",
  21. "url": "git+https://github.com/cyrilwanner/next-compose-plugins.git"
  22. },
  23. "keywords": [
  24. "next.js",
  25. "next",
  26. "react",
  27. "plugins",
  28. "compose"
  29. ],
  30. "author": "Cyril Wanner <info@cyr.li>",
  31. "license": "MIT",
  32. "bugs": {
  33. "url": "https://github.com/cyrilwanner/next-compose-plugins/issues"
  34. },
  35. "homepage": "https://github.com/cyrilwanner/next-compose-plugins#readme",
  36. "devDependencies": {
  37. "@babel/cli": "^7.4.4",
  38. "@babel/core": "^7.4.4",
  39. "@babel/plugin-proposal-object-rest-spread": "^7.4.4",
  40. "@babel/preset-env": "^7.4.4",
  41. "babel-core": "^6.26.3",
  42. "eslint": "^5.16.0",
  43. "eslint-config-airbnb-base": "^13.1.0",
  44. "eslint-plugin-import": "^2.17.2",
  45. "eslint-plugin-jest": "^22.5.1",
  46. "jest": "^24.7.1",
  47. "npm-autoinstaller": "^1.3.1",
  48. "rimraf": "^2.6.3"
  49. }
  50. }