package.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. {
  2. "name": "react-photo-view",
  3. "version": "0.2.2",
  4. "description": "React photo preview.",
  5. "main": "./lib/index",
  6. "module": "./es/index",
  7. "keywords": [
  8. "react",
  9. "react-component",
  10. "react-photo-view",
  11. "photo"
  12. ],
  13. "homepage": "https://github.com/MinJieLiu/react-photo-view",
  14. "repository": {
  15. "type": "git",
  16. "url": "https://github.com/MinJieLiu/react-photo-view.git"
  17. },
  18. "scripts": {
  19. "watch-tsc": "rc-tools run watch-tsc",
  20. "dist": "rc-tools run dist",
  21. "build": "rc-tools run build",
  22. "gh-pages": "rc-tools run gh-pages",
  23. "start": "rc-tools run server",
  24. "compile": "rc-tools run compile --babel-runtime",
  25. "pub": "rc-tools run pub --babel-runtime",
  26. "lint": "rc-tools run lint",
  27. "karma": "rc-test run karma",
  28. "saucelabs": "rc-test run saucelabs",
  29. "test": "rc-test run test",
  30. "prepublish": "rc-tools run guard",
  31. "chrome-test": "rc-test run chrome-test",
  32. "coverage": "rc-test run coverage"
  33. },
  34. "config": {
  35. "port": 8001
  36. },
  37. "files": [
  38. "lib",
  39. "es"
  40. ],
  41. "typings": "./lib/index.d.ts",
  42. "author": "LMY",
  43. "license": "MIT",
  44. "devDependencies": {
  45. "@types/react": "^16.4.6",
  46. "@types/react-dom": "^16.0.6",
  47. "babel-polyfill": "^6.23.0",
  48. "prettier": "^1.13.7",
  49. "rc-test": "^6.0.9",
  50. "rc-tools": "^8.1.1",
  51. "react": "^16.4.1",
  52. "react-dom": "^16.4.1"
  53. },
  54. "dependencies": {
  55. "lodash.debounce": "^4.0.8",
  56. "lodash.uniqueid": "^4.0.1",
  57. "styled-components": "^3.0.1"
  58. }
  59. }