forked from vittominacori/eth-token-recover
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
71 lines (71 loc) · 2.3 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "eth-token-recover",
"version": "4.1.0",
"description": "TokenRecover allows the contract owner to recover any ERC20 token sent into the contract for error",
"files": [
"contracts",
"test"
],
"scripts": {
"truffle:console": "truffle develop",
"truffle:compile": "scripts/compile.sh",
"truffle:test": "npm run truffle:compile && scripts/test.sh",
"hardhat:console": "hardhat console",
"hardhat:compile": "hardhat compile",
"hardhat:test": "hardhat test",
"hardhat:coverage": "hardhat coverage --network coverage",
"test": "npm run hardhat:test",
"coverage": "scripts/coverage.sh",
"clean": "rm -rf coverage",
"profile": "npm run clean && npm run coverage && open coverage/index.html",
"lint": "npm run lint:js && npm run lint:sol",
"lint:fix": "npm run lint:js:fix",
"lint:js": "eslint .",
"lint:js:fix": "eslint . --fix",
"lint:sol": "solhint --max-warnings 0 \"contracts/**/*.sol\"",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"docs:deploy": "vuepress build docs && sh docs/deploy/deploy.sh"
},
"repository": {
"type": "git",
"url": "https://github.com/vittominacori/eth-token-recover.git"
},
"keywords": [
"solidity",
"ethereum",
"smart",
"contracts",
"token"
],
"author": "Vittorio Minacori (https://github.com/vittominacori)",
"license": "MIT",
"bugs": {
"url": "https://github.com/vittominacori/eth-token-recover/issues"
},
"homepage": "https://github.com/vittominacori/eth-token-recover",
"dependencies": {
"@openzeppelin/contracts": "4.1.0"
},
"devDependencies": {
"@nomiclabs/hardhat-ganache": "^2.0.0",
"@nomiclabs/hardhat-truffle5": "^2.0.0",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/test-helpers": "^0.5.11",
"@vuepress/plugin-google-analytics": "^1.8.2",
"chai": "^4.3.4",
"eslint": "^7.25.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-mocha-no-only": "^1.1.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"ganache-cli": "^6.12.2",
"hardhat": "^2.2.1",
"solhint": "^3.3.4",
"solidity-coverage": "^0.7.16",
"truffle": "^5.3.4",
"vuepress": "^1.8.2"
}
}