2023-04-21 11:48:26 +03:00
|
|
|
{
|
|
|
|
"name": "test",
|
|
|
|
"dependencies": {
|
|
|
|
"ethers": "^6.0.0"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"typescript": "^5.0.0"
|
|
|
|
},
|
|
|
|
"version": "0.0.1",
|
|
|
|
"description": "Test case for simple import for ethers.",
|
|
|
|
"main": "index.js",
|
|
|
|
"private": true,
|
|
|
|
"publishConfig": { "access": "private" },
|
|
|
|
"scripts": {
|
|
|
|
"build": "tsc --project tsconfig.json",
|
2023-04-21 12:44:50 +03:00
|
|
|
"clean": "rm -rf node_modules package-lock.json *.js *.d.ts",
|
2023-04-21 12:56:11 +03:00
|
|
|
"postinstall": "find node_modules | grep package.json",
|
2023-04-21 11:48:26 +03:00
|
|
|
"test": "npm run build && node index.js"
|
|
|
|
},
|
|
|
|
"license": "MIT"
|
|
|
|
}
|