forked from Open-Rights-Exchange/chain-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.56 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
{
"name": "@open-rights-exchange/chainjs",
"version": "3.3.5",
"description": "Javascript helper library providing plug-in interfaces to multiple block chains.",
"main": "./dist/index.js",
"scripts": {
"build": "rm -rf dist/* && ./node_modules/.bin/tsc --build tsconfig.json",
"lint": "./node_modules/.bin/eslint src",
"lint-fix": "./node_modules/.bin/eslint src --fix",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"test": "jest --runInBand --coverage --detectOpenHandles"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TeamAikon/chain-js.git"
},
"author": "AIKON",
"bugs": {
"url": "https://github.com/TeamAikon/chain-js/issues"
},
"homepage": "https://github.com/TeamAikon/chain-js#readme",
"devDependencies": {
"@types/jest": "^24.0.24",
"@types/node": "^13.1.0",
"@typescript-eslint/eslint-plugin": "^4.31.2",
"@typescript-eslint/parser": "^4.31.2",
"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": "^24.9.0",
"prettier": "^2.4.1",
"ts-jest": "^24.2.0",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
},
"dependencies": {
"@aikon/sjcl": "^0.1.8",
"@gnosis.pm/safe-contracts": "^1.2.0",
"@types/bignumber.js": "^5.0.0",
"@types/bn.js": "^4.11.6",
"@types/bs58": "^4.0.1",
"@types/ed2curve": "^0.2.2",
"@types/node-fetch": "^2.5.4",
"@types/scrypt-async": "^1.3.1",
"@types/text-encoding": "0.0.35",
"algosdk": "^1.11.1",
"bignumber.js": "^9.0.0",
"bn.js": "^5.1.2",
"bs58": "^4.0.1",
"contract-proxy-kit": "^3.0.0",
"dotenv": "^8.0.0",
"ed2curve": "^0.3.0",
"eosjs": "^20.0.0",
"eosjs-ecc": "^4.0.7",
"eosjs-keygen": "^1.3.2",
"ethereumjs-tx": "^2.1.2",
"ethereumjs-util": "^6.2.0",
"ethereumjs-wallet": "^0.6.3",
"ethers": "^5.1.4",
"flatted": "^2.0.1",
"hash.js": "^1.1.7",
"hi-base32": "^0.5.0",
"jest-fetch-mock": "^2.1.2",
"js-sha256": "^0.9.0",
"js-sha512": "^0.8.0",
"moment": "^2.24.0",
"node-fetch": "^2.6.1",
"scrypt-async": "^2.0.1",
"secp256k1": "^4.0.2",
"text-encoding": "^0.7.0",
"tweetnacl": "^1.0.3",
"tweetnacl-util": "^0.15.1",
"web3": "^1.2.9",
"web3-core-helpers": "^1.2.9",
"web3-eth": "^1.2.9",
"web3-eth-contract": "^1.2.9",
"web3-utils": "^1.3.4"
}
}