-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 2.91 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
{
"name": "@espanicon/icon-bridge-sdk-js",
"version": "0.0.1-alpha",
"description": "An sdk written in JS for the ICON Bridge",
"exports": {
"node": {
"require": "./dist/icon-bridge-sdk-node.js"
},
"default": "./dist/icon-bridge-sdk-web.mjs"
},
"main": "./src/icon-bridge-sdk.ts",
"scripts": {
"build-data": "rm local-lib/*.js local-lib/*.js.* && tsc -p local-lib && node local-lib/buildABIData.js",
"test": "npm run build && mocha --recursive",
"test-unit": "npm run build && mocha --recursive ./test/unit/**/*.test.js",
"test-e2e": "npm run build && mocha --recursive ./test/e2e/**/*.test.js",
"test-e2e-icon": "npm run build && mocha --recursive ./test/e2e/icon/**/*.test.js",
"test-e2e-icon-ro": "npm run build && mocha --recursive ./test/e2e/icon/icon-bridge-sdk-icon-readonly.test.js",
"test-e2e-icon-node-nro": "npm run build && mocha --recursive ./test/e2e/icon/node/icon-bridge-sdk-icon-non-readonly.test.js",
"test-e2e-icon-web-nro": "npm run build && mocha --recursive ./test/e2e/icon/web/icon-bridge-sdk-icon-non-readonly.test.js",
"test-e2e-bsc": "npm run build && mocha --recursive ./test/e2e/bsc/**/*.test.js",
"test-e2e-bsc-ro": "npm run build && mocha --recursive ./test/e2e/bsc/icon-bridge-sdk-bsc-readonly.test.js",
"test-e2e-bsc-node-nro": "npm run build && mocha --recursive ./test/e2e/bsc/node/icon-bridge-sdk-bsc-non-readonly.test.js",
"test-e2e-bsc-web-nro": "npm run build && mocha --recursive ./test/e2e/bsc/web/icon-bridge-sdk-bsc-non-readonly.test.js",
"build": "rm -rf dist/ && tsc",
"test-web": "webpack serve --open",
"e2eTest-node": "npm run build && node ./dist/tests/e2eTests/node/main.mjs"
},
"keywords": [
"ICON",
"Blockchain",
"SDK",
"Bridge"
],
"author": "fidelve",
"license": "ISC",
"repository": {
"type": "git",
"repository": "[email protected]:Espanicon/icon-bridge-sdk-js.git",
"url": "https://github.com/Espanicon/icon-bridge-sdk-js"
},
"devDependencies": {
"@babel/core": "^7.18.9",
"@babel/preset-env": "^7.18.9",
"@babel/preset-react": "^7.18.6",
"@types/mocha": "^10.0.0",
"@types/node": "^18.11.9",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"babel-loader": "^8.2.5",
"css-loader": "^6.7.1",
"dotenv-webpack": "^8.0.0",
"eslint": "^8.25.0",
"html-webpack-plugin": "^5.5.0",
"mocha": "^10.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.3.3",
"ts-loader": "^9.4.1",
"typescript": "^4.8.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.3"
},
"dependencies": {
"@espanicon/espanicon-sdk": "github:Espanicon/espanicon-sdk",
"dotenv": "^16.0.3",
"icon-sdk-js": "^1.2.8",
"web3": "^1.8.0"
}
}