package.json 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. {
  2. "name": "openzeppelin-solidity",
  3. "version": "2.4.0",
  4. "description": "Secure Smart Contract library for Solidity",
  5. "files": [
  6. "/contracts/**/*.sol",
  7. "/build/contracts/*.json",
  8. "!/contracts/mocks",
  9. "!/contracts/examples",
  10. "/test/behaviors"
  11. ],
  12. "scripts": {
  13. "compile": "scripts/compile.sh",
  14. "coverage": "scripts/coverage.sh",
  15. "docs": "oz-docs -c docs",
  16. "docs:watch": "npm run docs watch contracts 'docs/*.hbs'",
  17. "prepare-docs": "scripts/prepare-docs.sh",
  18. "lint": "npm run lint:js && npm run lint:sol",
  19. "lint:fix": "npm run lint:js:fix",
  20. "lint:js": "eslint --ignore-path .gitignore .",
  21. "lint:js:fix": "eslint --ignore-path .gitignore . --fix",
  22. "lint:sol": "solhint --max-warnings 0 \"contracts/**/*.sol\"",
  23. "prepare": "node scripts/prepare.js",
  24. "release": "scripts/release/release.sh",
  25. "version": "scripts/release/version.sh",
  26. "test": "mocha --exit --recursive test"
  27. },
  28. "repository": {
  29. "type": "git",
  30. "url": "https://github.com/OpenZeppelin/openzeppelin-contracts.git"
  31. },
  32. "keywords": [
  33. "solidity",
  34. "ethereum",
  35. "smart",
  36. "contracts",
  37. "security",
  38. "zeppelin"
  39. ],
  40. "author": "OpenZeppelin Community <maintainers@openzeppelin.org>",
  41. "license": "MIT",
  42. "bugs": {
  43. "url": "https://github.com/OpenZeppelin/openzeppelin-contracts/issues"
  44. },
  45. "homepage": "https://github.com/OpenZeppelin/openzeppelin-contracts",
  46. "devDependencies": {
  47. "@openzeppelin/cli": "^2.5.3",
  48. "@openzeppelin/gsn-helpers": "^0.2.1",
  49. "@openzeppelin/gsn-provider": "^0.1.9",
  50. "@openzeppelin/test-environment": "^0.1.1",
  51. "@openzeppelin/test-helpers": "^0.5.4",
  52. "chai": "^4.2.0",
  53. "eslint": "^6.5.1",
  54. "eslint-config-standard": "^14.1.0",
  55. "eslint-plugin-import": "^2.18.2",
  56. "eslint-plugin-mocha-no-only": "^1.1.0",
  57. "eslint-plugin-node": "^10.0.0",
  58. "eslint-plugin-promise": "^4.2.1",
  59. "eslint-plugin-standard": "^4.0.1",
  60. "ethereumjs-util": "^6.2.0",
  61. "ganache-core-coverage": "https://github.com/OpenZeppelin/ganache-core-coverage/releases/download/2.5.3-coverage/ganache-core-coverage-2.5.3.tgz",
  62. "lodash.startcase": "^4.4.0",
  63. "micromatch": "^4.0.2",
  64. "mocha": "^6.2.2",
  65. "openzeppelin-docs-preview": "github:OpenZeppelin/docs-preview-script",
  66. "solhint": "2.3.0",
  67. "solidity-coverage": "github:rotcivegaf/solidity-coverage#5875f5b7bc74d447f3312c9c0e9fc7814b482477",
  68. "solidity-docgen": "^0.3.13"
  69. },
  70. "dependencies": {}
  71. }