package.json 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. {
  2. "name": "openzeppelin-solidity",
  3. "description": "Secure Smart Contract library for Solidity",
  4. "version": "4.1.0",
  5. "files": [
  6. "/contracts/**/*.sol",
  7. "/build/contracts/*.json",
  8. "!/contracts/mocks/**/*"
  9. ],
  10. "bin": {
  11. "openzeppelin-contracts-migrate-imports": "scripts/migrate-imports.js"
  12. },
  13. "scripts": {
  14. "compile": "hardhat compile",
  15. "coverage": "hardhat coverage",
  16. "docs": "oz-docs",
  17. "docs:watch": "npm run docs watch contracts 'docs/*.hbs'",
  18. "prepare-docs": "scripts/prepare-docs.sh",
  19. "lint": "npm run lint:js && npm run lint:sol",
  20. "lint:fix": "npm run lint:js:fix",
  21. "lint:js": "eslint --ignore-path .gitignore .",
  22. "lint:js:fix": "eslint --ignore-path .gitignore . --fix",
  23. "lint:sol": "echo 'solidity linter currently disabled' # solhint --max-warnings 0 \"contracts/**/*.sol\"",
  24. "prepublish": "rimraf build contracts/build artifacts cache",
  25. "prepare": "env COMPILE_MODE=production npm run compile",
  26. "prepack": "scripts/prepack.sh",
  27. "release": "scripts/release/release.sh",
  28. "version": "scripts/release/version.sh",
  29. "test": "hardhat test",
  30. "gas-report": "env ENABLE_GAS_REPORT=true npm run test"
  31. },
  32. "repository": {
  33. "type": "git",
  34. "url": "https://github.com/OpenZeppelin/openzeppelin-contracts.git"
  35. },
  36. "keywords": [
  37. "solidity",
  38. "ethereum",
  39. "smart",
  40. "contracts",
  41. "security",
  42. "zeppelin"
  43. ],
  44. "author": "OpenZeppelin Community <maintainers@openzeppelin.org>",
  45. "license": "MIT",
  46. "bugs": {
  47. "url": "https://github.com/OpenZeppelin/openzeppelin-contracts/issues"
  48. },
  49. "homepage": "https://openzeppelin.com/contracts/",
  50. "devDependencies": {
  51. "@nomiclabs/hardhat-solhint": "^2.0.0",
  52. "@nomiclabs/hardhat-truffle5": "^2.0.0",
  53. "@nomiclabs/hardhat-web3": "^2.0.0",
  54. "@openzeppelin/docs-utils": "^0.1.0",
  55. "@openzeppelin/test-helpers": "^0.5.9",
  56. "chai": "^4.2.0",
  57. "eslint": "^6.5.1",
  58. "eslint-config-standard": "^14.1.1",
  59. "eslint-plugin-import": "^2.20.0",
  60. "eslint-plugin-mocha-no-only": "^1.1.0",
  61. "eslint-plugin-node": "^10.0.0",
  62. "eslint-plugin-promise": "^4.2.1",
  63. "eslint-plugin-standard": "^4.0.1",
  64. "eth-sig-util": "^3.0.0",
  65. "ethereumjs-util": "^7.0.7",
  66. "ethereumjs-wallet": "^1.0.1",
  67. "hardhat": "^2.0.6",
  68. "hardhat-gas-reporter": "^1.0.4",
  69. "keccak256": "^1.0.2",
  70. "lodash.startcase": "^4.4.0",
  71. "lodash.zip": "^4.2.0",
  72. "merkletreejs": "^0.2.13",
  73. "micromatch": "^4.0.2",
  74. "mocha": "^8.0.1",
  75. "rimraf": "^3.0.2",
  76. "solhint": "^3.2.0",
  77. "solidity-coverage": "^0.7.11",
  78. "solidity-docgen": "^0.5.3",
  79. "web3": "^1.3.0",
  80. "yargs": "^16.2.0"
  81. }
  82. }