mirror of
https://github.com/oceanprotocol/ens-proxy.git
synced 2024-12-02 05:57:34 +01:00
a49a6bec33
Removes [elliptic](https://github.com/indutny/elliptic). It's no longer used after updating ancestor dependency [ethers](https://github.com/ethers-io/ethers.js). These dependencies need to be updated together. Removes `elliptic` Updates `ethers` from 5.7.2 to 6.13.4 - [Release notes](https://github.com/ethers-io/ethers.js/releases) - [Changelog](https://github.com/ethers-io/ethers.js/blob/main/CHANGELOG.md) - [Commits](https://github.com/ethers-io/ethers.js/compare/v5.7.2...v6.13.4) --- updated-dependencies: - dependency-name: elliptic dependency-type: indirect - dependency-name: ethers dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
41 lines
1.3 KiB
JSON
41 lines
1.3 KiB
JSON
{
|
|
"name": "ocean-ens-proxy",
|
|
"description": "Ocean Protocol ENS Proxy Server",
|
|
"version": "0.1.0",
|
|
"author": "Ocean Protocol <devops@oceanprotocol.com>",
|
|
"license": "Apache-2.0",
|
|
"scripts": {
|
|
"lint": "eslint --ignore-path .gitignore --ext .js --ext .ts --ext .tsx . && npm run type-check",
|
|
"clean": "rm -rf ./dist",
|
|
"format": "prettier --ignore-path .gitignore './**/*.{css,yml,js,ts,tsx,json}' --write",
|
|
"test:format": "npm run format && npm run lint",
|
|
"test:integration": "ts-mocha -p test/tsconfig.json --exit test/**/*.test.ts",
|
|
"test": "test:format && test:integration",
|
|
"type-check": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"ethers": "^6.13.4"
|
|
},
|
|
"devDependencies": {
|
|
"@types/chai": "^4.3.5",
|
|
"@types/glob": "^8.1.0",
|
|
"@types/mocha": "^10.0.1",
|
|
"@types/test-listen": "^1.1.0",
|
|
"@typescript-eslint/eslint-plugin": "^5.59.9",
|
|
"@typescript-eslint/parser": "^5.62.0",
|
|
"@vercel/node": "^3.0.11",
|
|
"axios": "^1.5.0",
|
|
"chai": "^4.3.8",
|
|
"eslint": "^8.46.0",
|
|
"eslint-config-prettier": "^8.8.0",
|
|
"eslint-plugin-prettier": "^4.0.0",
|
|
"husky": "^8.0.3",
|
|
"prettier": "^2.8.8",
|
|
"pretty-quick": "^3.1.3",
|
|
"test-listen": "^1.1.0",
|
|
"ts-mocha": "^10.0.0",
|
|
"typescript": "4.8.4",
|
|
"vercel-node-server": "^2.2.1"
|
|
}
|
|
}
|