package.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "name": "zeppelin-solidity",
  3. "version": "1.4.0",
  4. "description": "Secure Smart Contract library for Solidity",
  5. "scripts": {
  6. "test": "scripts/test.sh",
  7. "lint": "eslint .",
  8. "console": "truffle console",
  9. "coverage": "scripts/coverage.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. "devDependencies": {
  30. "babel-polyfill": "^6.23.0",
  31. "babel-preset-es2015": "^6.18.0",
  32. "babel-preset-stage-2": "^6.18.0",
  33. "babel-preset-stage-3": "^6.17.0",
  34. "babel-register": "^6.23.0",
  35. "chai": "^4.0.2",
  36. "chai-as-promised": "^7.0.0",
  37. "chai-bignumber": "^2.0.0",
  38. "coveralls": "^2.13.1",
  39. "eslint": "^4.11.0",
  40. "eslint-config-standard": "^10.2.1",
  41. "eslint-plugin-import": "^2.8.0",
  42. "eslint-plugin-node": "^5.2.1",
  43. "eslint-plugin-promise": "^3.6.0",
  44. "eslint-plugin-standard": "^3.0.1",
  45. "ethereumjs-testrpc": "^6.0.1",
  46. "ethereumjs-util": "^5.1.2",
  47. "mocha-lcov-reporter": "^1.3.0",
  48. "solidity-coverage": "^0.4.3",
  49. "truffle": "^4.0.0",
  50. "truffle-hdwallet-provider": "0.0.3"
  51. },
  52. "dependencies": {
  53. "dotenv": "^4.0.0"
  54. }
  55. }