-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 3.26 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "@open-rights-exchange/chain-js-plugin-ethereum",
"version": "4.13.6",
"description": "Chain-js plug-in for Ethereum networks.",
"license": "MIT",
"main": "dist/cjs/src/index.js",
"_module": "dist/mjs/src/index.js",
"_types": "dist/mjs/src/index.d.ts",
"sideEffects": false,
"scripts": {
"webpack": "use_local_chainjs_code_NOT_npm=false webpack --mode=production --node-env=production --config ./webpack.config.js && npm run copyToChainJS",
"webpack:local": "use_local_chainjs_code_NOT_npm=true webpack --mode=development --config ./webpack.config.js && npm run copyToChainJS",
"copyToChainJS": "cp dist/chain-js-plugin-eos-umd.js ../chain-js/dist/chain-js-plugin-eos-umd.js",
"_build": "rm -rf dist/* && tsc --build tsconfig.json",
"lint": "eslint src",
"lint-fix": "eslint src --fix",
"prepare": "npm run build:local",
"prepublishOnly": "npm test && npm run lint",
"test": "jest --coverage --maxWorkers=1",
"test:watch": "jest --watch",
"localpublish": "zalc publish && zalc push",
"build": "rm -fr dist/* && tsc -p tsconfig-mjs.json && tsc -p tsconfig-cjs.json && ./fixup",
"build:local": "rm -fr dist/* && tsc -p tsconfig-mjs-local.json && tsc -p tsconfig-cjs-local.json && ./fixup",
"example": "TS_NODE_PROJECT=tsconfig-cjs.json node -r ts-node/register/transpile-only --nolazy",
"example:local": "TS_NODE_PROJECT=tsconfig-cjs-local.json node -r ts-node/register/transpile-only -r tsconfig-paths/register --nolazy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/open-rights-exchange/chainjs-plugin-ethereum.git"
},
"author": "AIKON",
"bugs": {
"url": "https://github.com/open-rights-exchange/chainjs-plugin-ethereum/issues"
},
"homepage": "https://github.com/open-rights-exchange/chainjs-plugin-ethereum#readme",
"dependencies": {
"@ethereumjs/common": "^2.6.4",
"@ethereumjs/tx": "^3.5.1",
"@ethersproject/abstract-signer": "^5.7.0",
"@gnosis.pm/safe-contracts": "^1.2.0",
"@types/bn.js": "^4.11.6",
"bignumber.js": "^9.0.0",
"bn.js": "^5.1.2",
"dotenv": "^8.0.0",
"ethereumjs-util": "^7.1.4",
"ethereumjs-wallet": "^0.6.3",
"ethers": "^5.1.4",
"moment": "^2.29.4",
"nock": "^13.2.9",
"pad-buffer": "^1.0.3",
"secp256k1": "^4.0.2",
"web3": "^1.7.0",
"web3-core-helpers": "^1.7.0",
"web3-eth": "^1.7.0",
"web3-eth-contract": "^1.7.0",
"web3-utils": "^1.7.0"
},
"devDependencies": {
"@aikon/network-vcr": "^1.0.5",
"@types/jest": "^27.0.2",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"buffer": "^6.0.3",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-typescript": "^14.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jest": "^24.4.2",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.3.1",
"prettier": "^2.5.1",
"stream-browserify": "^3.0.0",
"ts-jest": "^27.0.7",
"ts-loader": "^9.2.8",
"ts-node": "^10.4.0",
"typescript": "^4.4.4",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.2"
},
"peerDependencies": {
"@open-rights-exchange/chain-js": "^4.10.0"
},
"files": [
"dist",
"src"
]
}