-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
111 lines (111 loc) · 3.97 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "@polycrypt/erdstall",
"version": "0.3.1",
"description": "SDK to interact with Erdstall Layer-2 Networks",
"main": "./index.js",
"exports": {
".": "./index.js",
"./enclave": "./enclave/index.js",
"./api": "./api/index.js",
"./api/transactions": "./api/transactions/index.js",
"./api/responses": "./api/responses/index.js",
"./api/calls": "./api/calls/index.js",
"./api/util": "./api/util/index.js",
"./ledger": "./ledger/index.js",
"./ledger/assets": "./ledger/assets/index.js",
"./ledger/backend/ethereum": "./ledger/backend/ethereum/index.js",
"./test": "./test/index.js",
"./test/assets": "./test/assets/index.js",
"./test/ledger": "./test/ledger/index.js",
"./utils": "./utils/index.js",
"./utils/arrays": "./utils/arrays/index.js",
"./utils/hexbytes": "./utils/hexbytes.js",
"./export/typedjson": "./export/typedjson.js",
"./crypto": "./crypto/index.js",
"./crypto/ethereum": "./crypto/ethereum/index.js",
"./crypto/substrate": "./crypto/substrate/index.js"
},
"imports": {
"#erdstall/*": "./*/index.js"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"watch": "tsc -w",
"lint": "eslint ./src --ext .ts",
"bindings": "./scripts/genbindings.sh",
"test:e2e": "env TS_NODE_PROJECT=\"tsconfig.e2e.json\" mocha -b --timeout 120000 -r jsdom-global/register -r ts-node/register -r tsconfig-paths/register 'src/e2e/**/*.spec.ts'",
"test:e2e:session": "env TS_NODE_PROJECT=\"tsconfig.e2e.json\" mocha -b --timeout 120000 -r jsdom-global/register -r ts-node/register -r tsconfig-paths/register 'src/e2e/operator_e2e.spec.ts'",
"test": "env TS_NODE_PROJECT=\"tsconfig.test.json\" mocha --timeout 15000 -r jsdom-global/register -r ts-node/register -r tsconfig-paths/register 'src/{,!(e2e)/**}/*.spec.ts'",
"test-file": "env TS_NODE_PROJECT=\"tsconfig.test.json\" mocha --timeout 15000 -r jsdom-global/register -r ts-node/register -r tsconfig-paths/register",
"prepack": "yarn build && tsc-alias -p tsconfig.json && ts-node ./scripts/prepack.ts ./package.json ./dist/package.json",
"devpub": "yarn prepack",
"doc": "typedoc ./src ./src/api ./src/enclave ./src/ledger ./src/ledger/backend ./src/test ./src/utils"
},
"repository": "github:perun-network/erdstall-ts-sdk",
"keywords": [
"blockchain",
"ethereum",
"plasma",
"scaling",
"TypeScript"
],
"author": "Norbert Dzikowski <[email protected]> (https://polycry.pt/)",
"contributors": [
"Steffen Rattay <[email protected]>",
"Sebastian Stammler <[email protected]>",
"Ruben Krüpper <[email protected]>"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/perun-network/erdstall-ts-sdk/issues"
},
"homepage": "https://erdstall.dev/",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@typechain/ethers-v5": "^7.1.2",
"@types/chai": "^4.2.16",
"@types/ganache-core": "^2.7.0",
"@types/mocha": "^8.2.2",
"@types/node": "^15.3.0",
"@types/walk": "^2.3.1",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"chai": "^4.3.4",
"eslint": "^7.24.0",
"eslint-config-prettier": "^8.2.0",
"eslint-plugin-prettier": "^3.4.0",
"ganache": "^7.0.2",
"ganache-cli": "^6.12.2",
"ganache-core": "^2.13.2",
"hardhat": "^2.22.1",
"hardhat-waffle": "^0.0.1-security",
"jsdom": "^16.6.0",
"jsdom-global": "^3.0.2",
"mocha": "^8.3.2",
"mocha-suppress-logs": "^0.3.1",
"nock": "^13.1.3",
"prettier": "^2.2.1",
"ts-node": "^10.9.1",
"tsc-alias": "^1.7.1",
"tsconfig-paths": "^3.10.1",
"typechain": "^5.1.2",
"typedoc": "^0.23.20",
"typescript": "^4.8.4",
"walk": "^2.3.14"
},
"dependencies": {
"@polkadot/api": "^10.10.1",
"@polkadot/api-contract": "^10.10.1",
"@polkadot/util-crypto": "^12.5.1",
"axios": "^0.21.4",
"canonicalize": "^2.0.0",
"ethereum-waffle": "^3.4.0",
"ethers": "^6.11.1",
"isomorphic-ws": "^4.0.1",
"number-generator": "^4.0.5",
"reflect-metadata": "^0.1.13",
"typedjson": "^1.8.0",
"ws": "^8.0.0"
}
}