package.json 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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' docs/helpers.js",
  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 && npm run lint:sol:fix",
  21. "lint:js": "eslint --ignore-path .gitignore .",
  22. "lint:js:fix": "eslint --ignore-path .gitignore . --fix",
  23. "lint:sol": "solhint 'contracts/**/*.sol' && prettier -c 'contracts/**/*.sol'",
  24. "lint:sol:fix": "prettier --write \"contracts/**/*.sol\"",
  25. "prepublish": "rimraf build contracts/build artifacts cache",
  26. "prepare": "env COMPILE_MODE=production npm run compile",
  27. "prepack": "scripts/prepack.sh",
  28. "release": "scripts/release/release.sh",
  29. "version": "scripts/release/version.sh",
  30. "test": "hardhat test",
  31. "gas-report": "env ENABLE_GAS_REPORT=true npm run test"
  32. },
  33. "repository": {
  34. "type": "git",
  35. "url": "https://github.com/OpenZeppelin/openzeppelin-contracts.git"
  36. },
  37. "keywords": [
  38. "solidity",
  39. "ethereum",
  40. "smart",
  41. "contracts",
  42. "security",
  43. "zeppelin"
  44. ],
  45. "author": "OpenZeppelin Community <maintainers@openzeppelin.org>",
  46. "license": "MIT",
  47. "bugs": {
  48. "url": "https://github.com/OpenZeppelin/openzeppelin-contracts/issues"
  49. },
  50. "homepage": "https://openzeppelin.com/contracts/",
  51. "devDependencies": {
  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. "prettier": "^2.3.0",
  75. "prettier-plugin-solidity": "^1.0.0-beta.13",
  76. "rimraf": "^3.0.2",
  77. "solhint": "^3.3.6",
  78. "solidity-coverage": "^0.7.11",
  79. "solidity-docgen": "^0.5.3",
  80. "web3": "^1.3.0",
  81. "yargs": "^17.0.0"
  82. }
  83. }