This repository has been archived by the owner on Dec 22, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.79 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": "js-cosmos",
"description": "The easily scaled client library for creating, serializing and sending transactions for cosmos-sdk/tendermint based network's",
"license": "MIT",
"homepage": "https://github.com/cybercongress/js-cosmos/",
"version": "1.0.2",
"author": "jonybang <Jonybange@gmail.com>",
"scripts": {
"lint": "eslint --ext .js src",
"test": "nyc --reporter=html --reporter=text ./node_modules/.bin/mocha --exit -r @babel/register 'test/**/*.test.js'",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"clean": "rm -rf dist && mkdir dist",
"build-src": "./node_modules/.bin/babel -d ./dist ./src -s",
"build": "npm run clean && npm run build-src"
},
"dependencies": {
"axios": "^0.19.0",
"bech32": "^1.1.3",
"bip32": "^1.0.2",
"bip39": "^3.0.2",
"js-amino": "^1.0.0",
"lodash": "^4.17.15",
"number-to-bn": "^1.7.0",
"ripemd160": "^2.0.1",
"secp256k1": "^3.2.5",
"sha256": "^0.2.0"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/register": "^7.5.5",
"@babel/runtime-corejs3": "^7.4.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"coveralls": "^3.0.5",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-config-prettier": "^4.3.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-import-resolver-webpack": "^0.10.1",
"eslint-loader": "^2.1.2",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-prettier": "^3.1.0",
"mocha": "^6.2.0",
"nyc": "^14.1.1"
}
}