-
-
Notifications
You must be signed in to change notification settings - Fork 214
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #698 from rotu/thorough-squid
- Loading branch information
Showing
1 changed file
with
12 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -66,16 +66,20 @@ | |
"typescript": "~4.9.5", | ||
"which": "^5.0.0" | ||
}, | ||
"engines": { | ||
"node": ">= 10", | ||
"pnpm": ">= 9" | ||
}, | ||
"overrides": { | ||
"typescript": "~4.9.5", | ||
"node-gyp": "10.0.1" | ||
}, | ||
"pnpm": { | ||
"overrides": { | ||
"typescript": "~4.9.5", | ||
"node-gyp": "10.0.1" | ||
} | ||
}, | ||
"engines": { | ||
"node": ">= 10", | ||
"pnpm": ">= 9" | ||
}, | ||
"files": [ | ||
"CHANGELOG.md", | ||
"LICENSE.txt", | ||
|
@@ -119,15 +123,15 @@ | |
"format.prettier": "prettier -l --cache --cache-location ./.cache/prettier --write .", | ||
"format.clang-format": "clang-format -i -style=file ./src/*.cc ./src/*.h ./src/util/*.h", | ||
"lint-test.eslint": "eslint './**/*.{ts,tsx,js,jsx,cjs,mjs,json,yaml}' --no-error-on-unmatched-pattern --cache --cache-location ./.cache/eslint/", | ||
"lint.eslint": "pnpm run lint-test.eslint --fix", | ||
"lint.eslint": "run-s 'lint-test.eslint --fix'", | ||
"lint.tsc": "tsc --noEmit -p ./src/tsconfig.json", | ||
"lint.tsc-test": "tsc --noEmit -p ./test/tsconfig.json", | ||
"lint.clang-tidy": "git ls-files --exclude-standard | grep -E '\\.(cpp|hpp|c|cc|cxx|hxx|h|ixx)$' | xargs -n 1 -P $(nproc) clang-tidy", | ||
"lint": "run-p lint.tsc-test lint.tsc lint.eslint format", | ||
"lint-test": "run-s lint-test.eslint", | ||
"bench": "node --expose-gc test/bench", | ||
"prepare": "pnpm run build.js", | ||
"bump": "pnpx npm-check-updates -u -x typescript,eslint,chai,@types/chai && pnpx typesync" | ||
"prepare": "run-s build.js", | ||
"bump": "npx npm-check-updates -u -x typescript,eslint,chai,@types/chai && npx typesync" | ||
}, | ||
"cmake-ts": { | ||
"nodeAPI": "node-addon-api", | ||
|
@@ -246,4 +250,4 @@ | |
], | ||
"license": "MIT AND MPL-2.0", | ||
"author": "Amin Yahyaabadi <[email protected]>, Rolf Timmermans <[email protected]>" | ||
} | ||
} |