package.json 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. {
  2. "name": "zeppelin-solidity",
  3. "version": "1.8.0",
  4. "description": "Secure Smart Contract library for Solidity",
  5. "scripts": {
  6. "test": "scripts/test.sh",
  7. "lint": "eslint .",
  8. "lint:fix": "eslint . --fix",
  9. "lint:sol": "solium -d .",
  10. "lint:sol:fix": "solium -d . --fix",
  11. "lint:all": "npm run lint && npm run lint:sol",
  12. "lint:all:fix": "npm run lint:fix && npm run lint:sol:fix",
  13. "console": "truffle console",
  14. "coverage": "scripts/coverage.sh",
  15. "version": "scripts/version.js"
  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. "devDependencies": {
  36. "babel-polyfill": "^6.23.0",
  37. "babel-preset-es2015": "^6.18.0",
  38. "babel-preset-stage-2": "^6.18.0",
  39. "babel-preset-stage-3": "^6.17.0",
  40. "babel-register": "^6.23.0",
  41. "chai": "^4.0.2",
  42. "chai-as-promised": "^7.0.0",
  43. "chai-bignumber": "^2.0.0",
  44. "coveralls": "^2.13.1",
  45. "eslint": "^4.11.0",
  46. "eslint-config-standard": "^10.2.1",
  47. "eslint-plugin-import": "^2.8.0",
  48. "eslint-plugin-node": "^5.2.1",
  49. "eslint-plugin-promise": "^3.6.0",
  50. "eslint-plugin-standard": "^3.0.1",
  51. "ethereumjs-util": "^5.1.2",
  52. "ethjs-abi": "^0.2.1",
  53. "ganache-cli": "6.1.0",
  54. "mocha-lcov-reporter": "^1.3.0",
  55. "solidity-coverage": "^0.4.15",
  56. "solium": "^1.1.6",
  57. "truffle": "^4.1.5",
  58. "truffle-hdwallet-provider": "0.0.3"
  59. },
  60. "dependencies": {
  61. "dotenv": "^4.0.0"
  62. }
  63. }