package.json 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. {
  2. "name": "openzeppelin-solidity",
  3. "version": "1.10.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.26.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.26.0",
  45. "chai": "^4.1.2",
  46. "chai-as-promised": "^7.0.0",
  47. "chai-bignumber": "^2.0.2",
  48. "coveralls": "^3.0.1",
  49. "dotenv": "^4.0.0",
  50. "eslint": "^4.19.1",
  51. "eslint-config-standard": "^10.2.1",
  52. "eslint-plugin-import": "^2.13.0",
  53. "eslint-plugin-node": "^5.2.1",
  54. "eslint-plugin-promise": "^3.8.0",
  55. "eslint-plugin-standard": "^3.1.0",
  56. "ethereumjs-util": "^5.2.0",
  57. "ethjs-abi": "^0.2.1",
  58. "ganache-cli": "6.1.0",
  59. "solidity-coverage": "^0.5.4",
  60. "solium": "^1.1.7",
  61. "truffle": "^4.1.11",
  62. "truffle-hdwallet-provider": "0.0.5",
  63. "web3-utils": "^1.0.0-beta.34"
  64. }
  65. }