package.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "name": "torn-token",
  3. "version": "1.0.8",
  4. "main": "config.js",
  5. "repository": "https://github.com/tornadocash/torn-token.git",
  6. "author": "Tornadocash team <hello@tornado.cash>",
  7. "license": "MIT",
  8. "keywords": [
  9. "web3",
  10. "ethereum",
  11. "solidity"
  12. ],
  13. "files": [
  14. "config.js",
  15. "contracts/*",
  16. "index.d.ts"
  17. ],
  18. "types": "index.d.ts",
  19. "scripts": {
  20. "compile": "truffle compile",
  21. "coverage": "yarn compile && truffle run coverage",
  22. "test": "truffle test",
  23. "test:stacktrace": "yarn test --stacktrace",
  24. "eslint": "eslint --ext .js --ignore-path .gitignore .",
  25. "prettier:check": "prettier --check . --config .prettierrc",
  26. "prettier:fix": "prettier --write . --config .prettierrc",
  27. "lint": "yarn eslint && yarn prettier:check",
  28. "verify": "truffle run verify --network $NETWORK"
  29. },
  30. "devDependencies": {
  31. "@ticket721/e712": "^0.4.1",
  32. "babel-eslint": "^10.1.0",
  33. "bn-chai": "^1.0.1",
  34. "chai": "^4.2.0",
  35. "chai-as-promised": "^7.1.1",
  36. "eslint": "^7.5.0",
  37. "prettier": "^2.1.2",
  38. "prettier-plugin-solidity": "^1.0.0-alpha.59",
  39. "rlp": "^2.2.6",
  40. "solhint-plugin-prettier": "^0.0.4",
  41. "solidity-coverage": "^0.7.7",
  42. "truffle": "^5.1.29",
  43. "truffle-flattener": "^1.4.4",
  44. "truffle-hdwallet-provider": "^1.0.17",
  45. "truffle-plugin-verify": "^0.3.11"
  46. },
  47. "dependencies": {
  48. "@openzeppelin/contracts": "^3.1.0",
  49. "eth-sig-util": "^2.5.3",
  50. "ethereumjs-util": "^7.0.3",
  51. "web3": "^1.2.11",
  52. "web3-utils": "^1.7.3"
  53. }
  54. }