31 lines
681 B
JSON
31 lines
681 B
JSON
{
|
|
"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"
|
|
},
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "tsc --project tsconfig.json",
|
|
"clean": "rm -rf node_modules package-lock.json *.js *.d.ts",
|
|
"postinstall": "find node_modules | grep package.json",
|
|
"test": "npm run build && node index.js"
|
|
},
|
|
"keywords": [
|
|
"ethers",
|
|
"tests",
|
|
"typescipt"
|
|
],
|
|
"author": "Richard Moore <me@ricmoo.com>",
|
|
"license": "MIT"
|
|
}
|