@metamask-previews/eth-block-tracker 15.0.1-preview-51b287c55 → 15.0.1-preview-2f3fe6006
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +6 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@metamask-previews/eth-block-tracker",
|
|
3
|
-
"version": "15.0.1-preview-
|
|
3
|
+
"version": "15.0.1-preview-2f3fe6006",
|
|
4
4
|
"description": "A block tracker for the Ethereum blockchain. Keeps track of the latest block",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Ethereum",
|
|
@@ -46,6 +46,11 @@
|
|
|
46
46
|
"build:docs": "typedoc",
|
|
47
47
|
"changelog:update": "../../scripts/update-changelog.sh @metamask/eth-block-tracker",
|
|
48
48
|
"changelog:validate": "../../scripts/validate-changelog.sh @metamask/eth-block-tracker",
|
|
49
|
+
"lint": "yarn lint:eslint && yarn lint:misc --check && yarn lint:dependencies",
|
|
50
|
+
"lint:dependencies": "depcheck",
|
|
51
|
+
"lint:eslint": "eslint . --ext js,ts",
|
|
52
|
+
"lint:fix": "yarn lint:eslint --fix && yarn lint:misc --write && yarn lint:dependencies",
|
|
53
|
+
"lint:misc": "prettier '**/*.json' '**/*.md' '!CHANGELOG.md' '**/*.yml' '!.yarnrc.yml' --ignore-path .gitignore --no-error-on-unmatched-pattern",
|
|
49
54
|
"since-latest-release": "../../scripts/since-latest-release.sh",
|
|
50
55
|
"test": "NODE_OPTIONS=--experimental-vm-modules jest --reporters=jest-silent-reporter",
|
|
51
56
|
"test:clean": "NODE_OPTIONS=--experimental-vm-modules jest --clearCache",
|