12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- {
- "name": "torn-token",
- "version": "1.0.8",
- "main": "config.js",
- "repository": "https://github.com/tornadocash/torn-token.git",
- "author": "Tornadocash team <hello@tornado.cash>",
- "license": "MIT",
- "keywords": [
- "web3",
- "ethereum",
- "solidity"
- ],
- "files": [
- "config.js",
- "contracts/*",
- "index.d.ts"
- ],
- "types": "index.d.ts",
- "scripts": {
- "compile": "truffle compile",
- "coverage": "yarn compile && truffle run coverage",
- "test": "truffle test",
- "test:stacktrace": "yarn test --stacktrace",
- "eslint": "eslint --ext .js --ignore-path .gitignore .",
- "prettier:check": "prettier --check . --config .prettierrc",
- "prettier:fix": "prettier --write . --config .prettierrc",
- "lint": "yarn eslint && yarn prettier:check",
- "verify": "truffle run verify --network $NETWORK"
- },
- "devDependencies": {
- "@ticket721/e712": "^0.4.1",
- "babel-eslint": "^10.1.0",
- "bn-chai": "^1.0.1",
- "chai": "^4.2.0",
- "chai-as-promised": "^7.1.1",
- "eslint": "^7.5.0",
- "prettier": "^2.1.2",
- "prettier-plugin-solidity": "^1.0.0-alpha.59",
- "rlp": "^2.2.6",
- "solhint-plugin-prettier": "^0.0.4",
- "solidity-coverage": "^0.7.7",
- "truffle": "^5.1.29",
- "truffle-flattener": "^1.4.4",
- "truffle-hdwallet-provider": "^1.0.17",
- "truffle-plugin-verify": "^0.3.11"
- },
- "dependencies": {
- "@openzeppelin/contracts": "^3.1.0",
- "eth-sig-util": "^2.5.3",
- "ethereumjs-util": "^7.0.3",
- "web3": "^1.2.11",
- "web3-utils": "^1.7.3"
- }
- }
|