package.json 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. {
  2. "name": "openzeppelin-solidity",
  3. "version": "1.9.0",
  4. "description": "Secure Smart Contract library for Solidity",
  5. "files": [
  6. "contracts",
  7. "test"
  8. ],
  9. "scripts": {
  10. "test": "scripts/test.sh",
  11. "lint": "eslint .",
  12. "lint:fix": "eslint . --fix",
  13. "lint:sol": "solium -d .",
  14. "lint:sol:fix": "solium -d . --fix",
  15. "lint:all": "npm run lint && npm run lint:sol",
  16. "lint:all:fix": "npm run lint:fix && npm run lint:sol:fix",
  17. "console": "truffle console",
  18. "coverage": "scripts/coverage.sh",
  19. "version": "scripts/version.js"
  20. },
  21. "repository": {
  22. "type": "git",
  23. "url": "https://github.com/OpenZeppelin/zeppelin-solidity.git"
  24. },
  25. "keywords": [
  26. "solidity",
  27. "ethereum",
  28. "smart",
  29. "contracts",
  30. "security",
  31. "zeppelin"
  32. ],
  33. "author": "Manuel Araoz <manuelaraoz@gmail.com>",
  34. "license": "MIT",
  35. "bugs": {
  36. "url": "https://github.com/OpenZeppelin/zeppelin-solidity/issues"
  37. },
  38. "homepage": "https://github.com/OpenZeppelin/zeppelin-solidity",
  39. "devDependencies": {
  40. "babel-polyfill": "^6.23.0",
  41. "babel-preset-es2015": "^6.18.0",
  42. "babel-preset-stage-2": "^6.18.0",
  43. "babel-preset-stage-3": "^6.17.0",
  44. "babel-register": "^6.23.0",
  45. "chai": "^4.0.2",
  46. "chai-as-promised": "^7.0.0",
  47. "chai-bignumber": "^2.0.0",
  48. "coveralls": "^2.13.1",
  49. "dotenv": "^4.0.0",
  50. "eslint": "^4.11.0",
  51. "eslint-config-standard": "^10.2.1",
  52. "eslint-plugin-import": "^2.8.0",
  53. "eslint-plugin-node": "^5.2.1",
  54. "eslint-plugin-promise": "^3.6.0",
  55. "eslint-plugin-standard": "^3.0.1",
  56. "ethereumjs-util": "^5.1.2",
  57. "ethjs-abi": "^0.2.1",
  58. "ganache-cli": "6.1.0",
  59. "solidity-coverage": "^0.4.15",
  60. "solium": "^1.1.6",
  61. "truffle": "^4.1.5",
  62. "truffle-hdwallet-provider": "0.0.3"
  63. }
  64. }