mirror of
https://github.com/vacp2p/linea-monorepo.git
synced 2026-01-09 15:38:06 -05:00
* add poc husky lint script * test commit change * undo test change * test change * undo test change * test * test * test * test * do * test * test * test * test * test * test * test * test * test * test * refactor to pre-commit to NodeJS script * add logs for demo * small refactor of pre-commit.js * add shebang to pre-commit * add other folders to husky script * added postman to pre-commit * remove test md change * add comments for pre-commit.js * adjust lint:fix scripts * Update .husky/pre-commit.js Co-authored-by: The Dark Jester <thedarkjester@users.noreply.github.com> Signed-off-by: kyzooghost <73516204+kyzooghost@users.noreply.github.com> --------- Signed-off-by: kyzooghost <73516204+kyzooghost@users.noreply.github.com> Co-authored-by: The Dark Jester <thedarkjester@users.noreply.github.com>
61 lines
1.6 KiB
JSON
61 lines
1.6 KiB
JSON
{
|
|
"name": "operations",
|
|
"version": "1.0.0",
|
|
"description": "Operations scripts",
|
|
"author": "Consensys Software Inc.",
|
|
"license": "Apache-2.0",
|
|
"scripts": {
|
|
"build": "shx rm -rf dist && tsc -p tsconfig.build.json",
|
|
"prettier": "prettier -c '**/*.{js,ts}'",
|
|
"prettier:fix": "prettier -w '**/*.{js,ts}'",
|
|
"lint": "eslint . --ext .ts",
|
|
"lint:fix": "pnpm run lint:ts:fix",
|
|
"lint:ts:fix": "eslint . --ext .ts --fix",
|
|
"test": "node --experimental-vm-modules node_modules/jest/bin/jest --bail --detectOpenHandles --forceExit",
|
|
"clean": "rimraf node_modules dist coverage",
|
|
"postpack": "shx rm -f oclif.manifest.json",
|
|
"posttest": "pnpm run lint",
|
|
"prepack": "oclif manifest && oclif readme",
|
|
"version": "oclif readme && git add README.md"
|
|
},
|
|
"dependencies": {
|
|
"@oclif/core": "4.0.23",
|
|
"@oclif/plugin-help": "6.2.13",
|
|
"@oclif/plugin-plugins": "5.4.10",
|
|
"axios": "1.7.7",
|
|
"ethers": "6.13.2"
|
|
},
|
|
"devDependencies": {
|
|
"@jest/globals": "29.7.0",
|
|
"@oclif/test": "4.0.9",
|
|
"@types/jest": "29.5.13",
|
|
"jest": "29.7.0",
|
|
"jest-mock-extended": "3.0.5",
|
|
"shx": "0.3.4",
|
|
"ts-jest": "29.2.5"
|
|
},
|
|
"engines": {
|
|
"node": ">=20"
|
|
},
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"type": "module",
|
|
"bin": {
|
|
"operations": "./bin/run.js"
|
|
},
|
|
"oclif": {
|
|
"bin": "operations",
|
|
"dirname": "operations",
|
|
"commands": "./dist/commands",
|
|
"plugins": [
|
|
"@oclif/plugin-help",
|
|
"@oclif/plugin-plugins"
|
|
],
|
|
"topicSeparator": " "
|
|
},
|
|
"files": [
|
|
"/bin",
|
|
"/dist",
|
|
"/oclif.manifest.json"
|
|
]
|
|
} |