-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.17 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
{
"name": "@web3-guru/loom-x",
"version": "0.5.1",
"files": [
"dist",
"README.md"
],
"main": "dist/index.js",
"author": {
"name": "Yoonjae Yoo",
"email": "[email protected]"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:web3-guru/loom-x.git"
},
"scripts": {
"build": "./node_modules/typescript/bin/tsc",
"docs": "./node_modules/typedoc/bin/typedoc --options ./typedoc.js",
"prepublish": "yarn build"
},
"keywords": [
"ethereum",
"loom"
],
"bugs": {
"url": "https://github.com/web3-guru/loom-x/issues"
},
"homepage": "https://github.com/web3-guru/loom-x",
"dependencies": {
"bip39": "^3.0.2",
"bn.js": "^4.11.8",
"dotenv": "^8.0.0",
"ethers": "^4.0.38",
"hdkey": "^1.1.1",
"js-sha256": "^0.9.0",
"loom-js": "1.54.2",
"web3": "0.20.7"
},
"devDependencies": {
"@babel/preset-typescript": "^7.3.3",
"@types/bn.js": "^4.11.5",
"prettier": "^1.16.4",
"ts-protoc-gen": "^0.6.0",
"tslint": "^5.15.0",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"typedoc": "^0.14.2",
"typescript": "3.4.1"
}
}