package.json 880 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name": "zeppelin-solidity",
  3. "version": "1.0.0",
  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": "^2.1.1"
  12. },
  13. "scripts": {
  14. "test": "truffle test",
  15. "install": "scripts/install.sh"
  16. },
  17. "repository": {
  18. "type": "git",
  19. "url": "https://github.com/OpenZeppelin/zeppelin-solidity.git"
  20. },
  21. "keywords": [
  22. "solidity",
  23. "ethereum",
  24. "smart",
  25. "contracts",
  26. "security",
  27. "zeppelin"
  28. ],
  29. "author": "Manuel Araoz <manuelaraoz@gmail.com>",
  30. "license": "MIT",
  31. "bugs": {
  32. "url": "https://github.com/OpenZeppelin/zeppelin-solidity/issues"
  33. },
  34. "homepage": "https://github.com/OpenZeppelin/zeppelin-solidity"
  35. }