mirror of
https://github.com/embarklabs/embark.git
synced 2025-01-09 21:35:58 +00:00
7e550f0e6f
Refactor typings as necessary. In order for `bignumber.js` in the root `node_modules` to not conflict with `@types/bignumber.js`, specify `"bignumber.js": "5.0.0"` in `devDependencies` and `"embark-ui/bignumber.js"` in `nohoist` of the root `package.json`. In `packages/plugins/rpc-manager` switch from callback to promise usage with respect to `web3.eth.accounts.signTransaction` because of a [bug][bug] discovered in web3 v1.2.4. In `packages/plugins/solidity-tests` specialize the tsc compiler options with `"skipLibCheck": true` because of a problematic web3-related typing in the `.d.ts` files of the remix-tests package. Bump ganache-cli from 6.4.3 to 6.7.0 (latest) because 6.4.3 doesn't support `eth_chainId` but web3 1.2.4 makes use of the `eth_chainId` RPC method (EIP 695). BREAKING CHANGE: bump embark's minimum supported version of parity from `>=2.0.0` to `>=2.2.1`. This is necessary since web3 1.2.4 makes use of the `eth_chainId` RPC method (EIP 695) and that parity version is the earliest one to implement it. [bug]: https://github.com/ethereum/web3.js/issues/3283
69 lines
1.6 KiB
JSON
69 lines
1.6 KiB
JSON
{
|
|
"name": "embarkjs-ens",
|
|
"version": "5.0.0-alpha.6",
|
|
"author": "Iuri Matias <iuri.matias@gmail.com>",
|
|
"contributors": [],
|
|
"description": "Ens plugin for embarkjs",
|
|
"homepage": "https://github.com/embark-framework/embark/tree/master/packages/embarkjs/ens#readme",
|
|
"bugs": "https://github.com/embark-framework/embark/issues",
|
|
"keywords": [
|
|
"blockchain",
|
|
"dapps",
|
|
"ethereum",
|
|
"ipfs",
|
|
"serverless",
|
|
"solc",
|
|
"solidity"
|
|
],
|
|
"license": "MIT",
|
|
"repository": {
|
|
"directory": "packages/embarkjs/ens",
|
|
"type": "git",
|
|
"url": "https://github.com/embark-framework/embark.git"
|
|
},
|
|
"main": "./dist/node/index.js",
|
|
"types": "./dist/node/index.d.ts",
|
|
"browser": "./dist/browser/index.js",
|
|
"browserslist": [
|
|
"last 1 version",
|
|
"not dead",
|
|
"> 0.2%"
|
|
],
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"embark-collective": {
|
|
"build:browser": true,
|
|
"build:node": true,
|
|
"typecheck": true
|
|
},
|
|
"scripts": {
|
|
"_build": "npm run solo -- build",
|
|
"_typecheck": "npm run solo -- typecheck",
|
|
"ci": "npm run qa",
|
|
"clean": "npm run reset",
|
|
"qa": "npm-run-all _typecheck _build",
|
|
"reset": "npx rimraf coverage dist embarkjs-*.tgz package",
|
|
"solo": "embark-solo"
|
|
},
|
|
"dependencies": {
|
|
"@babel/runtime-corejs3": "7.7.4",
|
|
"core-js": "3.4.3",
|
|
"embarkjs": "^5.0.0-alpha.5",
|
|
"eth-ens-namehash": "2.0.8",
|
|
"web3": "1.2.4"
|
|
},
|
|
"devDependencies": {
|
|
"ajv": "6.10.2",
|
|
"embark-solo": "^5.0.0-alpha.5",
|
|
"lodash.clonedeep": "4.5.0",
|
|
"npm-run-all": "4.1.5",
|
|
"rimraf": "3.0.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=10.17.0 <12.0.0",
|
|
"npm": ">=6.11.3",
|
|
"yarn": ">=1.19.1"
|
|
}
|
|
}
|