-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 721 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 721 Bytes
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
{
"name": "initialize-contract",
"version": "1.0.1",
"description": "A Node.js module for initializing Ethereum contracts using ethers.js",
"main": "index.js",
"scripts": {
"test": "jest"
},
"keywords": [
"ethereum",
"contracts",
"ethers.js"
],
"author": "Louismaria Ajuruchi",
"license": "ISC",
"devDependencies": {
"@babel/preset-env": "^7.23.9",
"@babel/preset-typescript": "^7.23.3",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.1",
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
},
"dependencies": {
"ethers": "^6.11.0"
}
}