-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
103 lines (103 loc) · 3.27 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
{
"name": "icon-sdk-js",
"version": "1.5.2",
"description": "JavaScript SDK for ICON",
"main": "./build/icon-sdk-js.node.min.js",
"types": "./build/index.d.ts",
"author": {
"id": "iconfoundation",
"name": "icon.foundation",
"email": "[email protected]"
},
"scripts": {
"lint": "eslint lib --ext .ts",
"start": "yarn build:node && cd quickstart && yarn start",
"build:type": "tsc --emitDeclarationOnly --outDir build",
"build:node": "yarn build && cd quickstart && yarn",
"build:native": "yarn build && cd ../react-native-test && cp -rf ../icon-sdk-js/build ./ && expo start",
"build": "NODE_PATH=./ webpack --env build",
"dev": "NODE_PATH=./ webpack --progress --colors --watch --env dev",
"test": "yarn mocha test/**/*.ts -r ts-node/register --colors --timeout 0",
"test:watch": "NODE_PATH=./ mocha --require @babel/register --colors -w --timeout 0",
"quickstart:rebuild": "eslint --fix . && NODE_PATH=./ webpack --env build && cd quickstart && yarn && yarn start"
},
"repository": {
"type": "git",
"url": "https://github.com/icon-project/icon-sdk-js/"
},
"engines": {
"node": ">=18.0.0",
"yarn": "^1.22.10"
},
"keywords": [
"icon",
"icx",
"cryptocurrency",
"crypto",
"bitcoin",
"ethereum",
"binance"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/icon-project/icon-sdk-js/issues"
},
"homepage": "https://github.com/icon-project/icon-sdk-js/",
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.20.2",
"@babel/eslint-parser": "^7.22.15",
"@babel/register": "^7.18.9",
"@babel/runtime": "^7.20.7",
"@types/create-hash": "^1.2.2",
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.18",
"@types/secp256k1": "4.0.3",
"@types/utf8": "^3.0.1",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"babel-loader": "^9.1.2",
"babel-plugin-add-module-exports": "^1.0.4",
"babel-plugin-syntax-class-properties": "^6.13.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^7.0.0-beta.3",
"babel-preset-env": "^7.0.0-beta.3",
"chai": "^4.3.7",
"eslint": "^8.31.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.11",
"jsdom": "21.0.0",
"jsdom-global": "3.0.2",
"mocha": "^10.2.0",
"prettier": "^2.8.2",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.4",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"yargs": "^17.6.2"
},
"dependencies": {
"@babel/runtime-corejs3": "^7.20.7",
"bignumber.js": "^9.1.1",
"bip66": "^1.1.5",
"buffer": "^6.0.3",
"bufferutil": "^4.0.7",
"core-js": "^3.27.1",
"crypto-browserify": "^3.12.0",
"js-sha3": "^0.8.0",
"readable-stream": "^4.3.0",
"secp256k1": "5.0.1",
"utf-8-validate": "^6.0.3",
"utf8": "^3.0.0",
"uuid": "^9.0.0",
"ws": "^8.13.0"
},
"browser": "./build/icon-sdk-js.web.min.js"
}