package.json 823 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name": "eth-lib",
  3. "version": "0.2.8",
  4. "description": "Lightweight Ethereum libraries",
  5. "main": "lib/index.js",
  6. "scripts": {
  7. "build": "babel src --out-dir=lib",
  8. "test": "mocha test/test.js"
  9. },
  10. "repository": {
  11. "type": "git",
  12. "url": "git+https://github.com/maiavictor/eth-lib.git"
  13. },
  14. "keywords": [
  15. "ethereum"
  16. ],
  17. "author": "Victor Maia",
  18. "license": "MIT",
  19. "bugs": {
  20. "url": "https://github.com/maiavictor/eth-lib/issues"
  21. },
  22. "homepage": "https://github.com/maiavictor/eth-lib#readme",
  23. "devDependencies": {
  24. "babel-cli": "^6.24.1",
  25. "babel-preset-es2015": "^6.24.1",
  26. "ethjs-account": "^0.1.1",
  27. "ethjs-signer": "^0.1.1",
  28. "rlp": "^2.0.0"
  29. },
  30. "dependencies": {
  31. "bn.js": "^4.11.6",
  32. "elliptic": "^6.4.0",
  33. "xhr-request-promise": "^0.1.2"
  34. }
  35. }