-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 3.46 KB
/
package.json
File metadata and controls
120 lines (120 loc) · 3.46 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "@loopring-web/loopring-sdk",
"version": "3.3.37",
"author": "Loopring Dev Team",
"description": "Loopring SDK",
"license": "SEE LICENSE IN LICENSE",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"module": "dist/loopring-sdk.esm.js",
"files": [
"dist"
],
"dependencies": {
"@ethersproject/bignumber": "5.7.0",
"@ethereumjs/common": "^3.2.0",
"@ethereumjs/tx": "^4.2.0",
"@types/jsbn": "^1.2.30",
"axios": "^1.4.0",
"bignumber.js": "^9.1.1",
"blake-hash": "^2.0.0",
"blake2b": "^2.1.3",
"bn.js": "^5.2.1",
"buffer": "^6.0.3",
"crypto-js": "^4.0.0",
"@metamask/eth-sig-util": "^5.1.0",
"ethereumjs-abi": "0.6.8",
"ethereumjs-util": "^7.1.5",
"ethers": "^6.6.1",
"js-sha3": "^0.8.0",
"js-sha512": "^0.8.0",
"jsbn": "^1.1.0",
"web-encoding": "^1.1.5",
"web3": "^4.0.1"
},
"build": {
"files": [
"build/**/*",
"node_modules/**/*"
],
"publish": {
"provider": "custom",
"repo": "https://github.com/Loopring/loopring_sdk",
"owner": "Loopring Dev Team"
}
},
"scripts": {
"build": "tsdx build",
"start": "yarn link; tsdx watch",
"test": "tsdx test",
"test_calc": "tsdx test",
"lint": "eslint . --fix --quiet --ext .ts",
"prepublishDev": "NODE_ENV=dev tsdx build",
"prepublishOnly": "NODE_ENV=production tsdx build",
"doc": "typedoc --out docs/detail src\\/",
"proxy": "export http_proxy=http://127.0.0.1:1087;export https_proxy=http://127.0.0.1:1087;",
"build-book": "npx honkit build",
"cp-file-doc": "cp README.md ./docs/README.md; cp Changelog.md ./docs/Changelog.md; ",
"build-b": "npm run doc; npm run build-book",
"serve-book": "npx honkit serve",
"deploy-book": "gh-pages -d _book"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"devDependencies": {
"@babel/plugin-transform-typescript": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@microsoft/tsdoc": "^0.14.2",
"@types/bignumber.js": "^5.0.0",
"@types/classnames": "^2.2.11",
"@types/collections": "^5.1.2",
"@types/crypto-js": "^4.0.1",
"@types/eth-sig-util": "^2.1.0",
"@types/ethereumjs-abi": "^0.6.3",
"@types/ethereumjs-tx": "^2.0.0",
"@types/ethereumjs-util": "^6.1.0",
"@types/jest": "^29.5.2",
"@types/lodash": "^4.14.195",
"@types/mocha": "^10.0.1",
"@types/ms": "^0.7.31",
"@types/node": "^20.3.1",
"@types/node-fetch": "^3.0.3",
"@types/request": "^2.48.6",
"@types/request-promise": "^4.1.48",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"async": "^3.2.4",
"babel-jest": "^29.5.0",
"babel-plugin-import": "^1.13.6",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.7.0",
"chai": "^4.3.7",
"gh-pages": "^5.0.0",
"honkit": "^4.0.7",
"jest": "^29.5.0",
"mocha": "^10.2.0",
"prettier": "^2.8.8",
"request-promise": "^4.2.6",
"truffle-privatekey-provider": "1.5.0",
"ts-node": "^10.9.1",
"tsdx": "^0.14.1",
"tslib": "^2.5.3",
"typedoc": "^0.24.8",
"typedoc-plugin-markdown": "^3.15.3",
"typescript": "^5.1.3"
}
}