package.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. {
  2. "name": "openzeppelin-solidity",
  3. "version": "2.0.0",
  4. "description": "Secure Smart Contract library for Solidity",
  5. "files": [
  6. "build",
  7. "contracts",
  8. "test"
  9. ],
  10. "scripts": {
  11. "test": "scripts/test.sh",
  12. "lint:js": "eslint .",
  13. "lint:js:fix": "eslint . --fix",
  14. "lint:sol": "solium -d .",
  15. "lint:sol:fix": "solium -d . --fix",
  16. "lint": "npm run lint:js && npm run lint:sol",
  17. "lint:fix": "npm run lint:js:fix && npm run lint:sol:fix",
  18. "console": "truffle console",
  19. "coverage": "scripts/coverage.sh",
  20. "version": "scripts/version.js"
  21. },
  22. "repository": {
  23. "type": "git",
  24. "url": "https://github.com/OpenZeppelin/zeppelin-solidity.git"
  25. },
  26. "keywords": [
  27. "solidity",
  28. "ethereum",
  29. "smart",
  30. "contracts",
  31. "security",
  32. "zeppelin"
  33. ],
  34. "author": "OpenZeppelin Community <maintainers@openzeppelin.org>",
  35. "license": "MIT",
  36. "bugs": {
  37. "url": "https://github.com/OpenZeppelin/zeppelin-solidity/issues"
  38. },
  39. "homepage": "https://github.com/OpenZeppelin/zeppelin-solidity",
  40. "devDependencies": {
  41. "chai": "^4.1.2",
  42. "chai-bignumber": "^2.0.2",
  43. "coveralls": "^3.0.1",
  44. "dotenv": "^4.0.0",
  45. "eslint": "^4.19.1",
  46. "eslint-config-standard": "^10.2.1",
  47. "eslint-plugin-import": "^2.13.0",
  48. "eslint-plugin-mocha-no-only": "^1.0.0",
  49. "eslint-plugin-node": "^5.2.1",
  50. "eslint-plugin-promise": "^3.8.0",
  51. "eslint-plugin-standard": "^3.1.0",
  52. "ethjs-abi": "^0.2.1",
  53. "ganache-cli": "6.1.0",
  54. "solidity-coverage": "^0.5.4",
  55. "solium": "^1.1.8",
  56. "truffle": "^4.1.13",
  57. "truffle-hdwallet-provider": "0.0.5",
  58. "web3-utils": "^1.0.0-beta.34"
  59. },
  60. "dependencies": {}
  61. }