package.json 1.0 KB

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