forked from flare-foundation/multi-chain-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.84 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.84 KB
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
89
90
91
92
93
94
95
96
97
{
"name": "@flarenetwork/mcc",
"version": "2.0.9",
"description": "Multi chain client",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"author": "Flare Networks",
"homepage": "https://github.com/flare-foundation/multi-chain-client",
"repository": {
"type": "git",
"url": "https://github.com/flare-foundation/multi-chain-client"
},
"license": "MIT",
"prettier": {
"printWidth": 160,
"semi": true,
"singleQuote": false,
"trailingComma": "es5",
"tabWidth": 3
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"check-coverage": true,
"all": true,
"sourceMap": true,
"include": [
"src/**/*.ts"
],
"exclude": [
"src/types",
"src/axios-rate-limiter",
"src/utils/typeReflection.ts",
"src/utils/retry.ts"
],
"reporter": [
"html",
"lcov",
"text",
"text-summary"
],
"report-dir": "coverage"
},
"files": [
"/dist",
"/src"
],
"scripts": {
"----------BUILD----------": "----------BUILD----------",
"prebuild": "rm -r dist",
"build": "tsc --allowJs",
"----------PUBLISH----------": "----------PUBLISH----------",
"publish": "echo npm publish",
"pack": "npm pack",
"----------TEST----------": "----------TEST----------",
"test": "mocha -r ts-node/register -r dotenv/config --require source-map-support/register -t 0",
"test_all": "mocha -r ts-node/register -r dotenv/config -r source-map-support/register --recursive -t 10000 test/**/*.ts ",
"test:coverage": "yarn nyc yarn test_all",
"get:block": "tsc test/ALGO/mock/gettestmockblock.ts"
},
"dependencies": {
"@msgpack/msgpack": "^2.8.0",
"algo-msgpack-with-bigint": "2.1.1",
"algosdk": "1.21.0",
"axios": "0.27.2",
"axios-retry": "3.2.5",
"base32.js": "0.1.0",
"camelcase": "6.3.0",
"fast-safe-stringify": "2.1.1",
"js-sha512": "0.8.0",
"msgpack-lite": "^0.1.26",
"ripple-address-codec": "4.2.4",
"typescript": "4.7.3",
"web3": "1.8.0",
"xrpl": "2.3.0"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "1.0.2",
"@types/chai": "4.3.1",
"@types/chai-as-promised": "7.1.5",
"@types/mocha": "9.1.1",
"@types/node": "17.0.42",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"axios-mock-adapter": "^1.21.2",
"chai": "4.3.6",
"chai-as-promised": "^7.1.1",
"dotenv": "16.0.1",
"eslint": "^8.26.0",
"eslint-plugin-prettier": "^4.2.1",
"mocha": "9.2.2",
"nyc": "15.1.0",
"prettier": "2.6.2",
"source-map-support": "0.5.21",
"test-console": "2.0.0",
"ts-node": "10.8.0"
}
}