generated from NomicFoundation/hardhat-ts-plugin-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
55 lines (55 loc) · 1.38 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
{
"name": "hardhat-sourcify",
"version": "0.0.2",
"description": "Sourcify plugin for hardhat",
"repository": "https://github.com/zoey-t/hardhat-sourcify",
"author": "zoey-t",
"license": "MIT",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"keywords": [
"ethereum",
"smart-contracts",
"hardhat",
"hardhat-plugin",
"sourcify",
"verify"
],
"scripts": {
"lint:fix": "prettier --write 'src/**/*.{js,ts}' 'test/**/*.{js,ts}' && tslint --fix --config tslint.json --project tsconfig.json",
"lint": "tslint --config tslint.json --project tsconfig.json",
"test": "mocha --exit --recursive 'test/**/*.test.ts'",
"build": "tsc",
"watch": "tsc -w",
"install": "npm run build",
"prepublishOnly": "npm run build"
},
"files": [
"dist/src/",
"src/",
"LICENSE",
"README.md"
],
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/fs-extra": "^11.0.1",
"@types/mocha": "^10.0.1",
"hardhat": "^2.13.0",
"mocha": "^10.2.0",
"prettier": "2.8.7",
"ts-node": "^10.9.1",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.3.0",
"typescript": "^5.0.2"
},
"peerDependencies": {
"hardhat": "^2.0.0"
},
"dependencies": {
"@types/node": "^18.15.7",
"axios": "^1.3.4",
"form-data": "^4.0.0",
"fs-extra": "^11.1.1"
}
}