package.json 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "@wormhole-foundation/algorand-audit",
  3. "version": "0.1.0",
  4. "private": true,
  5. "description": "",
  6. "main": "out/audit.js",
  7. "types": "out/audit.d.ts",
  8. "scripts": {
  9. "pretest": "tsc --build",
  10. "test": "jest Wormhole.test.ts",
  11. "lint": "eslint . --ext .ts",
  12. "fix": "eslint . --ext .ts --fix"
  13. },
  14. "keywords": [],
  15. "author": "",
  16. "license": "ISC",
  17. "dependencies": {
  18. "algosdk": "^1.13.1",
  19. "varint": "^6.0.0",
  20. "web3-utils": "^1.7.5"
  21. },
  22. "devDependencies": {
  23. "@certusone/wormhole-sdk": "^0.4.5",
  24. "@types/elliptic": "^6.4.14",
  25. "@types/jest": "^26.0.14",
  26. "@types/node": "^16.11.9",
  27. "@types/node-fetch": "^2.6.1",
  28. "@typescript-eslint/eslint-plugin": "^5.12.1",
  29. "@typescript-eslint/parser": "^5.12.1",
  30. "eslint": "^8.9.0",
  31. "ethers": "^5.6.9",
  32. "jest": "^26.6.0",
  33. "ts-jest": "^26.5.6",
  34. "ts-node": "^10.4.0",
  35. "typescript": "^4.6.2"
  36. },
  37. "jest": {
  38. "preset": "ts-jest",
  39. "testEnvironment": "node",
  40. "collectCoverage": true,
  41. "testTimeout": 30000
  42. }
  43. }