forked from terra-money/terra.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.16 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
{
"name": "@terra-money/terra.js",
"version": "1.6.1",
"description": "The JavaScript SDK for Terra",
"license": "MIT",
"author": "Terraform Labs, PTE.",
"keywords": [
"terra",
"crypto",
"blockchain",
"smart-contracts"
],
"repository": {
"type": "git",
"url": "git://github.com/terra-project/terra.js.git"
},
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=10"
},
"scripts": {
"build": "tsc --module commonjs && webpack --mode production",
"test": "jest",
"prettier": "prettier --write ./src/**/*.ts",
"lint": "eslint src --ext .js,.jsx,.ts,.tsx",
"doc": "typedoc",
"prepublishOnly": "npm run build"
},
"lint-staged": {
"./src/**/*.ts": [
"prettier --write",
"eslint"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"post-checkout": "npm i"
}
},
"prettier": {
"semi": true,
"singleQuote": true,
"trailingComma": "es5",
"arrowParens": "avoid"
},
"devDependencies": {
"@types/crypto-js": "^3.1.47",
"@types/jest": "^26.0.14",
"@types/node": "^14.14.17",
"@types/readable-stream": "^2.3.9",
"@types/secp256k1": "^4.0.1",
"@types/tmp": "^0.2.0",
"@types/ws": "^7.4.0",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"buffer": "^6.0.3",
"eslint": "^7.16.0",
"husky": "^4.3.6",
"jest": "^26.6.3",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"stream-browserify": "^3.0.0",
"ts-jest": "^26.4.4",
"ts-loader": "^8.0.13",
"ts-node": "^9.1.1",
"tsconfig-paths-webpack-plugin": "^3.3.0",
"typedoc": "^0.20.5",
"typescript": "^4.1.5",
"webpack": "^5.11.1",
"webpack-bundle-analyzer": "^4.3.0",
"webpack-cli": "^4.3.0"
},
"dependencies": {
"axios": "^0.21.1",
"bech32": "^2.0.0",
"bip32": "^2.0.6",
"bip39": "^3.0.3",
"bufferutil": "^4.0.1",
"crypto-js": "3.3.0",
"decimal.js": "^10.2.1",
"readable-stream": "^3.6.0",
"secp256k1": "^4.0.2",
"tmp": "^0.2.1",
"utf-8-validate": "^5.0.2",
"ws": "^7.4.2"
}
}