package.json 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. {
  2. "name": "openzeppelin-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. },
  16. "repository": {
  17. "type": "git",
  18. "url": "https://github.com/OpenZeppelin/zeppelin-solidity.git"
  19. },
  20. "keywords": [
  21. "solidity",
  22. "ethereum",
  23. "smart",
  24. "contracts",
  25. "security",
  26. "zeppelin"
  27. ],
  28. "author": "Manuel Araoz <manuelaraoz@gmail.com>",
  29. "license": "MIT",
  30. "bugs": {
  31. "url": "https://github.com/OpenZeppelin/zeppelin-solidity/issues"
  32. },
  33. "homepage": "https://github.com/OpenZeppelin/zeppelin-solidity",
  34. "devDependencies": {
  35. "babel-polyfill": "^6.23.0",
  36. "babel-preset-es2015": "^6.18.0",
  37. "babel-preset-stage-2": "^6.18.0",
  38. "babel-preset-stage-3": "^6.17.0",
  39. "babel-register": "^6.23.0",
  40. "chai": "^4.0.2",
  41. "chai-as-promised": "^7.0.0",
  42. "chai-bignumber": "^2.0.0",
  43. "coveralls": "^2.13.1",
  44. "eslint": "^4.11.0",
  45. "eslint-config-standard": "^10.2.1",
  46. "eslint-plugin-import": "^2.8.0",
  47. "eslint-plugin-node": "^5.2.1",
  48. "eslint-plugin-promise": "^3.6.0",
  49. "eslint-plugin-standard": "^3.0.1",
  50. "ethereumjs-testrpc": "^6.0.1",
  51. "ethereumjs-util": "^5.1.2",
  52. "mocha-lcov-reporter": "^1.3.0",
  53. "solidity-coverage": "^0.4.3",
  54. "solium": "^1.1.2",
  55. "truffle": "^4.0.0",
  56. "truffle-hdwallet-provider": "0.0.3"
  57. },
  58. "dependencies": {
  59. "dotenv": "^4.0.0",
  60. "ethjs-abi": "^0.2.1"
  61. }
  62. }