package.json 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. {
  2. "name": "@ethereumjs/common",
  3. "version": "2.5.0",
  4. "description": "Resources common to all Ethereum implementations",
  5. "license": "MIT",
  6. "keywords": [
  7. "ethereum",
  8. "ethereumjs",
  9. "constants",
  10. "parameters",
  11. "genesis",
  12. "networks",
  13. "bootstrap"
  14. ],
  15. "files": [
  16. "dist",
  17. "dist.browser",
  18. "src"
  19. ],
  20. "main": "dist/index.js",
  21. "types": "dist/index.d.ts",
  22. "browser": "dist.browser/index.js",
  23. "scripts": {
  24. "build": "npm run build:node && npm run build:browser",
  25. "build:node": "../../config/cli/ts-build.sh node",
  26. "build:browser": "../../config/cli/ts-build.sh browser",
  27. "prepublishOnly": "../../config/cli/prepublish.sh",
  28. "clean": "../../config/cli/clean-package.sh",
  29. "coverage": "../../config/cli/coverage.sh",
  30. "format": "ethereumjs-config-format",
  31. "format:fix": "ethereumjs-config-format-fix",
  32. "tsc": "../../config/cli/ts-compile.sh",
  33. "lint": "../../config/cli/lint.sh",
  34. "lint:fix": "../../config/cli/lint-fix.sh",
  35. "tape": "tape -r ts-node/register",
  36. "test": "npm run test:node && npm run test:browser",
  37. "test:node": "npm run tape -- ./tests/*.spec.ts",
  38. "test:browser": "karma start karma.conf.js",
  39. "docs:build": "typedoc --options typedoc.js"
  40. },
  41. "dependencies": {
  42. "crc-32": "^1.2.0",
  43. "ethereumjs-util": "^7.1.1"
  44. },
  45. "devDependencies": {
  46. "@types/node": "^11.13.4",
  47. "@types/tape": "^4.13.2",
  48. "eslint": "^6.8.0",
  49. "karma": "^6.3.2",
  50. "karma-chrome-launcher": "^3.1.0",
  51. "karma-firefox-launcher": "^2.1.0",
  52. "karma-tap": "^4.2.0",
  53. "karma-typescript": "^5.5.1",
  54. "nyc": "^14.0.0",
  55. "prettier": "^2.0.5",
  56. "tape": "^5.3.1",
  57. "typedoc": "^0.22.4",
  58. "ts-node": "^10.2.1",
  59. "typescript": "^4.4.2"
  60. },
  61. "repository": {
  62. "type": "git",
  63. "url": "https://github.com/ethereumjs/ethereumjs-monorepo.git"
  64. },
  65. "homepage": "https://github.com/ethereumjs/ethereumjs-monorepo/tree/master/packages/common#readme",
  66. "bugs": {
  67. "url": "https://github.com/ethereumjs/ethereumjs-monorepo/issues?q=is%3Aissue+label%3A%22package%3A+common%22"
  68. },
  69. "maintainers": [
  70. {
  71. "name": "Holger Drewes",
  72. "email": "Holger.Drewes@gmail.com"
  73. }
  74. ]
  75. }