-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.53 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": "@cronos-labs/hardhat-cronoscan",
"version": "0.0.5",
"description": "Hardhat Cronoscan plugin",
"repository": "github:cronos-labs/hardhat-cronoscan",
"author": "Cronos Labs",
"license": "MIT",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"keywords": [
"cronos",
"smart-contracts",
"hardhat",
"hardhat-plugin"
],
"scripts": {
"lint:fix": "prettier --write 'src/**/*.{js,ts}' 'test/**/*.{js,ts}' && eslint --fix --config .eslintrc.js --ext .ts src/",
"lint": "eslint --config .eslintrc.js --ext .ts src/",
"test": "mocha --exit --recursive 'test/**/*.test.ts'",
"build": "tsc",
"watch": "tsc -w",
"prepublishOnly": "npm run build"
},
"files": [
"dist/src/",
"src/",
"LICENSE",
"README.md"
],
"devDependencies": {
"@nomicfoundation/hardhat-verify": "1.0.4",
"@types/chai": "4.3.5",
"@types/fs-extra": "11.0.1",
"@types/mocha": "10.0.1",
"@types/node": "18.17.0",
"@typescript-eslint/eslint-plugin": "6.2.0",
"@typescript-eslint/eslint-plugin-tslint": "6.2.0",
"@typescript-eslint/parser": "6.2.0",
"chai": "4.3.7",
"eslint": "8.45.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-prefer-arrow": "1.2.3",
"eslint-plugin-prettier": "5.0.0",
"eslint-plugin-unicorn": "48.0.0",
"hardhat": "2.17.0",
"mocha": "10.2.0",
"prettier": "3.0.0",
"ts-node": "10.9.0",
"typescript": "4.9.3"
},
"peerDependencies": {
"hardhat": "^2.0.4"
}
}