-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.54 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
{
"name": "smart-contract-verifier",
"version": "1.0.0",
"description": "Smart Contract Verifier",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"src",
"dist"
],
"scripts": {
"lint:prettier": "prettier --check src docs .github *.md",
"format:prettier": "prettier --write src docs .github *.md",
"lint:eslint": "eslint src",
"format:eslint": "eslint --fix src",
"lint": "yarn lint:prettier && yarn lint:eslint",
"format": "yarn format:prettier && yarn format:eslint",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/AndreMiras/smart-contract-verifier.js.git"
},
"keywords": [
"ethereum",
"smart contract",
"verify",
"solidity"
],
"author": "Andre Miras",
"license": "MIT",
"bugs": {
"url": "https://github.com/AndreMiras/smart-contract-verifier.js/issues"
},
"homepage": "https://github.com/AndreMiras/smart-contract-verifier.js",
"devDependencies": {
"@babel/core": "^7.19.6",
"@babel/preset-env": "^7.19.4",
"@babel/preset-typescript": "^7.18.6",
"@types/node": "^18.11.3",
"@types/node-fetch": "^2.6",
"@types/web3": "^1.2.2",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typedoc": "^0.23.20",
"typescript": "^4.8.4"
},
"dependencies": {
"node-fetch": "^2.6",
"solc": "^0.8.17",
"web3": "^1.7.4"
}
}