eamutils
Version:
Some reusable functions in some projects
48 lines (47 loc) • 1.39 kB
JSON
{
"name": "eamutils",
"version": "1.0.9",
"description": "Some reusable functions in some projects",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/emmab30/mutils.git"
},
"scripts": {
"build": "rm -rf lib && tsc && npm run cp-assets",
"cp-assets": "cp -R src/modules/w3/files ./lib/modules/w3/files",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"test": "jest --config jestconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"keywords": [
"Reusable",
"Utils",
"Functions",
"Web3",
"Strings",
"Numbers",
"Ethers"
],
"author": "Emma Abuslaiman",
"license": "ISC",
"devDependencies": {
"@types/jest": "^29.4.0",
"jest": "^29.4.3",
"prettier": "^2.8.4",
"ts-jest": "^29.0.5",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.9.5"
},
"dependencies": {
"ethers": "^5.7.2",
"web3": "^1.8.2"
}
}