package.json 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. {
  2. "name": "@rc-component/mini-decimal",
  3. "version": "1.1.0",
  4. "description": "Lite lib to only support decimal add calculation",
  5. "keywords": [
  6. "decimal"
  7. ],
  8. "homepage": "https://github.com/react-component/mini-decimal",
  9. "bugs": {
  10. "url": "https://github.com/react-component/mini-decimal/issues"
  11. },
  12. "repository": {
  13. "type": "git",
  14. "url": "https://github.com/react-component/mini-decimal.git"
  15. },
  16. "license": "MIT",
  17. "author": "smith3816@gmail.com",
  18. "main": "./lib/index",
  19. "module": "./es/index",
  20. "typings": "es/index.d.ts",
  21. "files": [
  22. "lib",
  23. "es",
  24. "dist"
  25. ],
  26. "scripts": {
  27. "compile": "father build",
  28. "deploy": "npm run docs:build && npm run docs:deploy",
  29. "docs:build": "dumi build",
  30. "docs:deploy": "gh-pages -d docs-dist",
  31. "lint": "eslint src/ --ext .tsx,.ts",
  32. "lint:tsc": "tsc -p tsconfig.json --noEmit",
  33. "now-build": "npm run docs:build",
  34. "prepublishOnly": "npm run compile && np --no-cleanup --yolo --no-publish",
  35. "prettier": "prettier --write \"**/*.{js,jsx,tsx,ts,less,md,json}\"",
  36. "start": "dumi dev",
  37. "test": "umi-test",
  38. "test:coverage": "npm run test --coverage",
  39. "watch": "father dev"
  40. },
  41. "dependencies": {
  42. "@babel/runtime": "^7.18.0"
  43. },
  44. "devDependencies": {
  45. "@rc-component/father-plugin": "^1.0.0",
  46. "@testing-library/jest-dom": "^5.16.4",
  47. "@testing-library/react": "^13.0.0",
  48. "@types/jest": "^26.0.20",
  49. "@types/react": "^18.0.0",
  50. "@types/react-dom": "^18.0.0",
  51. "@umijs/fabric": "^2.5.2",
  52. "dumi": "^1.1.0",
  53. "eslint": "^7.18.0",
  54. "father": "^4.0.0-rc.8",
  55. "gh-pages": "^3.1.0",
  56. "np": "^5.0.3",
  57. "prettier": "^2.1.2",
  58. "react": "^18.0.0",
  59. "react-dom": "^18.0.0",
  60. "typescript": "^4.6.3",
  61. "umi-test": "^1.9.7"
  62. },
  63. "engines": {
  64. "node": ">=8.x"
  65. }
  66. }