package.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "zeppelin-solidity",
  3. "version": "1.2.0",
  4. "description": "Secure Smart Contract library for Solidity",
  5. "main": "truffle.js",
  6. "scripts": {
  7. "test": "scripts/test.sh",
  8. "console": "truffle console",
  9. "coverage": "scripts/coverage.sh",
  10. "coveralls": "scripts/coveralls.sh"
  11. },
  12. "repository": {
  13. "type": "git",
  14. "url": "https://github.com/OpenZeppelin/zeppelin-solidity.git"
  15. },
  16. "keywords": [
  17. "solidity",
  18. "ethereum",
  19. "smart",
  20. "contracts",
  21. "security",
  22. "zeppelin"
  23. ],
  24. "author": "Manuel Araoz <manuelaraoz@gmail.com>",
  25. "license": "MIT",
  26. "bugs": {
  27. "url": "https://github.com/OpenZeppelin/zeppelin-solidity/issues"
  28. },
  29. "homepage": "https://github.com/OpenZeppelin/zeppelin-solidity",
  30. "dependencies": {
  31. "truffle-hdwallet-provider": "0.0.3"
  32. },
  33. "devDependencies": {
  34. "babel-preset-es2015": "^6.18.0",
  35. "babel-preset-stage-2": "^6.18.0",
  36. "babel-preset-stage-3": "^6.17.0",
  37. "babel-register": "^6.23.0",
  38. "babel-polyfill": "^6.23.0",
  39. "chai": "^4.0.2",
  40. "chai-as-promised": "^7.0.0",
  41. "chai-bignumber": "^2.0.0",
  42. "coveralls": "^2.13.1",
  43. "ethereumjs-testrpc": "^3.0.2",
  44. "mocha-lcov-reporter": "^1.3.0",
  45. "moment": "^2.18.1",
  46. "solidity-coverage": "^0.1.7",
  47. "truffle": "^3.4.6"
  48. }
  49. }