package.json 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. {
  2. "name": "@rongmz/react-stock-heatmap",
  3. "version": "1.0.0",
  4. "description": "This is a react chart library for genarating "Stock Heatmap" with given market depth data. Stock Heatmap graph useful for day traders.",
  5. "author": "Rounak Saha",
  6. "license": "MIT",
  7. "keywords": [
  8. "Stock-Heat-map",
  9. "react",
  10. "chart",
  11. "intraday",
  12. "trading",
  13. "market-depth"
  14. ],
  15. "repository": {
  16. "type": "git",
  17. "url": "git+https://github.com/rongmz/react-stock-heatmap.git"
  18. },
  19. "bugs": {
  20. "url": "https://github.com/rongmz/react-stock-heatmap/issues"
  21. },
  22. "homepage": "https://github.com/rongmz/react-stock-heatmap#readme",
  23. "main": "dist/index.js",
  24. "module": "dist/index.modern.js",
  25. "source": "src/index.js",
  26. "engines": {
  27. "node": ">=10"
  28. },
  29. "types": "./types/index.d.ts",
  30. "scripts": {
  31. "build": "microbundle-crl --no-compress --format modern,cjs",
  32. "start": "microbundle-crl watch --no-compress --format modern,cjs",
  33. "prepare": "run-s build",
  34. "test": "run-s test:unit test:lint test:build",
  35. "test:build": "run-s build",
  36. "test:lint": "eslint .",
  37. "test:unit": "cross-env CI=1 react-scripts test --env=jsdom",
  38. "test:watch": "react-scripts test --env=jsdom",
  39. "predeploy": "cd example && npm install && npm run build",
  40. "deploy": "gh-pages -d example/build"
  41. },
  42. "peerDependencies": {
  43. "react": "^16.13.1",
  44. "react-dom": "^16.13.1"
  45. },
  46. "devDependencies": {
  47. "microbundle-crl": "^0.13.10",
  48. "babel-eslint": "^10.0.3",
  49. "cross-env": "^7.0.2",
  50. "eslint": "^6.8.0",
  51. "eslint-config-prettier": "^6.7.0",
  52. "eslint-config-standard": "^14.1.0",
  53. "eslint-config-standard-react": "^9.2.0",
  54. "eslint-plugin-import": "^2.18.2",
  55. "eslint-plugin-node": "^11.0.0",
  56. "eslint-plugin-prettier": "^3.1.1",
  57. "eslint-plugin-promise": "^4.2.1",
  58. "eslint-plugin-react": "^7.17.0",
  59. "eslint-plugin-standard": "^4.0.1",
  60. "gh-pages": "^2.2.0",
  61. "npm-run-all": "^4.1.5",
  62. "prettier": "^2.0.4",
  63. "react": "^16.13.1",
  64. "react-dom": "^16.13.1",
  65. "react-scripts": "^3.4.1"
  66. },
  67. "files": [
  68. "dist"
  69. ],
  70. "dependencies": {
  71. "d3-array": "^2.7.1",
  72. "d3-color": "^2.0.0",
  73. "d3-ease": "^2.0.0",
  74. "d3-format": "^2.0.0",
  75. "d3-interpolate": "^2.0.1",
  76. "d3-scale": "^3.2.2",
  77. "d3-shape": "^2.0.0",
  78. "d3-timer": "^2.0.0",
  79. "d3-zoom": "^2.0.0"
  80. }
  81. }