package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {
  2. "name": "erc20-tokens",
  3. "version": "0.0.1",
  4. "description": "Ethereum Token Contracts",
  5. "main": "truffle.js",
  6. "directories": {
  7. "test": "test"
  8. },
  9. "scripts": {
  10. "compile": "truffle compile",
  11. "test": "standard && truffle test",
  12. "lint": "standard --fix"
  13. },
  14. "repository": {
  15. "type": "git",
  16. "url": "git+https://github.com/ConsenSys/Tokens.git"
  17. },
  18. "keywords": [
  19. "ethereum"
  20. ],
  21. "authors": [
  22. "Simon de la Rouviere <simon.delarouviere@consensys.net>",
  23. "Joseph Chow <joseph.chow@consensys.net>"
  24. ],
  25. "license": "MIT",
  26. "bugs": {
  27. "url": "https://github.com/ConsenSys/Tokens/issues"
  28. },
  29. "homepage": "https://github.com/ConsenSys/Tokens#readme",
  30. "dependencies": {
  31. "truffle": "4.0.1",
  32. "truffle-hdwallet-provider": "0.0.3"
  33. },
  34. "devDependencies": {
  35. "eslint-plugin-import": "2.7.0",
  36. "eslint-plugin-node": "5.1.0",
  37. "eslint-plugin-react": "7.1.0",
  38. "eslint-plugin-standard": "3.0.1",
  39. "standard": "10.0.2"
  40. },
  41. "standard": {
  42. "globals": [
  43. "assert",
  44. "it",
  45. "before",
  46. "beforeEach",
  47. "artifacts",
  48. "contract",
  49. "web3"
  50. ]
  51. }
  52. }