package.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {
  2. "name": "react-scrollable-slider",
  3. "version": "1.0.0",
  4. "description": "made in love with JS and in hate with CSS",
  5. "author": "asmer",
  6. "license": "MIT",
  7. "repository": {
  8. "type": "git",
  9. "url": "git@gitlab.a-level.com.ua:gitgod/react-scrollable-slider"
  10. },
  11. "main": "dist/index.js",
  12. "module": "dist/index.modern.js",
  13. "source": "src/index.js",
  14. "engines": {
  15. "node": ">=10"
  16. },
  17. "scripts": {
  18. "build": "microbundle-crl --no-compress --format modern,cjs",
  19. "start": "microbundle-crl watch --no-compress --format modern,cjs",
  20. "prepare": "run-s build",
  21. "test": "run-s test:unit test:lint test:build",
  22. "test:build": "run-s build",
  23. "test:lint": "eslint .",
  24. "test:unit": "cross-env CI=1 react-scripts test --env=jsdom",
  25. "test:watch": "react-scripts test --env=jsdom",
  26. "predeploy": "cd example && npm install && npm run build",
  27. "deploy": "gh-pages -d example/build"
  28. },
  29. "peerDependencies": {
  30. "react": "^18.0.0"
  31. },
  32. "devDependencies": {
  33. "microbundle-crl": "^0.13.10",
  34. "babel-eslint": "^10.0.3",
  35. "cross-env": "^7.0.2",
  36. "eslint": "^6.8.0",
  37. "eslint-config-standard": "^14.1.0",
  38. "eslint-config-standard-react": "^9.2.0",
  39. "eslint-plugin-import": "^2.18.2",
  40. "eslint-plugin-node": "^11.0.0",
  41. "eslint-plugin-promise": "^4.2.1",
  42. "eslint-plugin-react": "^7.17.0",
  43. "eslint-plugin-standard": "^4.0.1",
  44. "gh-pages": "^2.2.0",
  45. "npm-run-all": "^4.1.5",
  46. "react": "^18.0.0",
  47. "react-dom": "^18.0.0",
  48. "react-scripts": "^3.4.1"
  49. },
  50. "files": [
  51. "dist"
  52. ]
  53. }