forked from rkalis/truffle-plugin-verify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1006 Bytes
/
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
{
"name": "truffle-plugin-verify",
"version": "0.5.21",
"description": "Verify your deployed smart contracts on Etherscan from the Truffle CLI",
"repository": "https://github.com/rkalis/truffle-plugin-verify",
"main": "verify.js",
"files": [
"constants.js",
"util.js",
"verify.js",
"truffle-plugin.json"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint ."
},
"keywords": [
"truffle",
"plugin",
"ethereum",
"etherscan",
"verify"
],
"author": "Rosco Kalis <roscokalis@gmail.com>",
"license": "MIT",
"dependencies": {
"axios": "^0.21.1",
"cli-logger": "^0.5.40",
"delay": "^5.0.0",
"querystring": "^0.2.1",
"tunnel": "0.0.6"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0"
}
}