package.json 985 B

12345678910111213141516171819202122232425262728293031323334353637
  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. "babel-register": "^6.23.0",
  11. "ethereumjs-testrpc": "^3.0.2",
  12. "truffle": "git@github.com:ConsenSys/truffle.git#beta"
  13. },
  14. "scripts": {
  15. "test": "scripts/test.sh",
  16. "console": "truffle console",
  17. "install": "scripts/install.sh"
  18. },
  19. "repository": {
  20. "type": "git",
  21. "url": "https://github.com/OpenZeppelin/zeppelin-solidity.git"
  22. },
  23. "keywords": [
  24. "solidity",
  25. "ethereum",
  26. "smart",
  27. "contracts",
  28. "security",
  29. "zeppelin"
  30. ],
  31. "author": "Manuel Araoz <manuelaraoz@gmail.com>",
  32. "license": "MIT",
  33. "bugs": {
  34. "url": "https://github.com/OpenZeppelin/zeppelin-solidity/issues"
  35. },
  36. "homepage": "https://github.com/OpenZeppelin/zeppelin-solidity"
  37. }