generated from NomicFoundation/hardhat-ts-plugin-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.44 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "hardhat-scilla-plugin",
"version": "3.8.0",
"description": "Hardhat TypeScript plugin for scilla testing",
"repository": "github:Zilliqa/hardhat-scilla-plugin",
"author": "Saeed Dadkhah",
"license": "MIT",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"keywords": [
"ethereum",
"smart-contracts",
"hardhat",
"hardhat-plugin",
"scilla",
"zilliqa"
],
"scripts": {
"lint:fix": "prettier --write 'src/**/*.{js,ts}' 'test/**/*.{js,ts}' && eslint --fix . --ext .ts --fix",
"lint": "eslint . --ext .ts",
"test": "mocha --exit --recursive 'test/**/*.test.ts' --exclude 'test/**/*.live.test.ts'",
"test-all": "mocha --exit --recursive 'test/**/*.test.ts'",
"test-live": "mocha --exit --recursive 'test/**/*.live.test.ts'",
"build": "tsc",
"watch": "tsc -w",
"prepublishOnly": "yarn build && yarn test",
"force-scilla-download": "npx ts-node scripts/force-scilla-download.ts"
},
"files": [
"dist/src/",
"src/",
"LICENSE",
"README.md"
],
"mocha": {
"file": [
"./test/prepare.setup.ts"
]
},
"devDependencies": {
"@types/chai": "^4.3.12",
"@types/cli-color": "^2.0.6",
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.6",
"@types/node": "^20.11.24",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"chai": "^4.4.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-unicorn": "^51.0.1",
"eslint-plugin-unused-imports": "^3.1.0",
"hardhat": "^2.20.1",
"mocha": "^10.3.0",
"prettier": "^2.8.8",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"dependencies": {
"@ethersproject/bignumber": "^5.7.0",
"@types/chai-subset": "^1.3.5",
"@zilliqa-js/account": "^3.5.0",
"@zilliqa-js/contract": "^3.5.0",
"@zilliqa-js/core": "^3.5.0",
"@zilliqa-js/crypto": "^3.5.0",
"@zilliqa-js/util": "^3.5.0",
"chai-subset": "^1.6.0",
"cli-color": "^2.0.4",
"glob": "^10.3.10",
"s-expression": "^3.1.1"
},
"peerDependencies": {
"@zilliqa-js/zilliqa": "^3.4.3",
"hardhat": "^2.18.0"
},
"pnpm": {
"overrides": {
"cross-fetch@<2.2.6": ">=2.2.6",
"tar@<3.2.2": ">=3.2.2",
"node-fetch@<2.6.7": ">=2.6.7",
"tar@<4.4.18": ">=4.4.18",
"protobufjs@>=6.10.0 <6.11.4": ">=6.11.4"
}
}
}