-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3d87fbc
commit 42c1409
Showing
10 changed files
with
6,052 additions
and
3,350 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
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
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
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 |
---|---|---|
@@ -1,3 +1,4 @@ | ||
node_modules | ||
dist | ||
.idea | ||
.yarn/install-state.gz |
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
nodeLinker: node-modules | ||
yarnPath: .yarn/releases/yarn-4.3.0.cjs |
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 |
---|---|---|
|
@@ -4,7 +4,6 @@ | |
"description": "Parity EngAutomation test helpers and fixtures", | ||
"author": "Parity <[email protected]> (https://parity.io)", | ||
"license": "Apache-2.0", | ||
"private": false, | ||
"type": "commonjs", | ||
"main": "./dist/index.js", | ||
"types": "./dist/index.d.ts", | ||
|
@@ -14,33 +13,32 @@ | |
"types": "./dist/index.d.ts" | ||
} | ||
}, | ||
"imports": { | ||
"#src/*": "./dist/*.js" | ||
}, | ||
"files": [ | ||
"dist" | ||
], | ||
"dependencies": { | ||
"@eng-automation/js": "^0.0.21", | ||
"@eng-automation/js": "^2.1.0", | ||
"@octokit/rest": "^19.0.7", | ||
"mockttp": "^3.9.4", | ||
"node-fetch": "^2.6.7", | ||
"selfsigned": "^2.1.0" | ||
}, | ||
"devDependencies": { | ||
"@eng-automation/js-style": "^2.0.0", | ||
"@eng-automation/js-style": "^3.1.0", | ||
"@octokit/webhooks-types": "^5.8.0", | ||
"@types/node": "^16", | ||
"@types/node-fetch": "^2.6.2", | ||
"ts-patch": "^2.0.2", | ||
"typescript": "^4.6.2", | ||
"typescript-transform-paths": "^3.4.4" | ||
"@types/node": "^20", | ||
"typescript": "^5.4.5" | ||
}, | ||
"scripts": { | ||
"build": "tsc", | ||
"build:watch": "tsc -w", | ||
"lint": "eslint '{*,**/*}.{cjs,ts}' && prettier --check '{*,**/*}.json'", | ||
"lint": "npx eslint '{*,**/*}.{cjs,ts}' && npx prettier --check '{*,**/*}.json'", | ||
"fix": "yarn fix:eslint '{*,**/*}.{cjs,js,ts}' && yarn fix:prettier '{*,**/*}.json'", | ||
"fix:eslint": "eslint --fix", | ||
"fix:prettier": "prettier --write", | ||
"prepare": "ts-patch install -s", | ||
"fix:eslint": "npx eslint --fix", | ||
"fix:prettier": "npx prettier --write", | ||
"typecheck": "tsc --noEmit" | ||
} | ||
}, | ||
"packageManager": "[email protected]" | ||
} |
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
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
Oops, something went wrong.