-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.45 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
{
"name": "cosmos-js",
"version": "1.0.0",
"author": "jonybang <[email protected]>",
"scripts": {
"lint": "eslint --ext .js src",
"test": "./node_modules/.bin/mocha --exit -r @babel/register 'test/**/*.test.js'",
"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": {
"eslint-utils": ">=1.4.1",
"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",
"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"
}
}