package.json 917 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "zeppelin-solidity",
  3. "version": "1.0.1",
  4. "description": "Secure Smart Contract library for Solidity",
  5. "main": "truffle.js",
  6. "devDependencies": {
  7. "babel-preset-es2015": "^6.18.0",
  8. "babel-preset-stage-2": "^6.18.0",
  9. "babel-preset-stage-3": "^6.17.0",
  10. "ethereumjs-testrpc": "^3.0.2",
  11. "truffle": "^3.1.1"
  12. },
  13. "scripts": {
  14. "test": "scripts/test.sh",
  15. "console": "truffle console",
  16. "install": "scripts/install.sh"
  17. },
  18. "repository": {
  19. "type": "git",
  20. "url": "https://github.com/OpenZeppelin/zeppelin-solidity.git"
  21. },
  22. "keywords": [
  23. "solidity",
  24. "ethereum",
  25. "smart",
  26. "contracts",
  27. "security",
  28. "zeppelin"
  29. ],
  30. "author": "Manuel Araoz <manuelaraoz@gmail.com>",
  31. "license": "MIT",
  32. "bugs": {
  33. "url": "https://github.com/OpenZeppelin/zeppelin-solidity/issues"
  34. },
  35. "homepage": "https://github.com/OpenZeppelin/zeppelin-solidity"
  36. }