{
  "name": "@jeansoon/mxw",
  "version": "0.1.30",
  "description": "Maxonrow blockchain library",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "scripts": {
    "dist": "npm run build; npm run dist-publish",
    "dist-publish": "npm publish --access public",
    "dist-version": "node -e \"let v = require('./package.json').version; require('fs').writeFileSync('./src.ts/_version.ts', 'export const version = \\\"' + v +'\\\";\\n')\"",
    "build": "npm run clean && npm run dist-version && npm run compile",
    "compile": "tsc -p ./tsconfig.json",
    "build-min": "browserify ./src/index.js | uglifyjs -c -m --rename --toplevel --source-map -o ./src/index.min.js",
    "build-webpack": "webpack",
    "clean": "rm -rf ./dist",
    "dist-test": "npm run build && mocha --timeout 30000 -r ts-node/register tests/test-*.ts",
    "dist-test-provider": "npm run build && mocha --timeout 30000 -r ts-node/register tests/test-provider.ts",
    "dist-test-wallet": "npm run build && mocha --timeout 30000 -r ts-node/register tests/test-wallet.ts",
    "test": "mocha --timeout 30000 -r ts-node/register tests/test-*.ts"
  },
  "author": "Jean Soon <jeansoon@mxw.one>",
  "license": "ISC",
  "devDependencies": {
    "@babel/core": "^7.3.4",
    "@babel/preset-env": "^7.3.4",
    "@babel/preset-react": "^7.0.0",
    "babel-loader": "^8.0.5",
    "babel-plugin-transform-class-properties": "^6.24.1",
    "babel-plugin-transform-object-rest-spread": "^6.26.0",
    "chai": "^4.2.0",
    "dts-bundle": "^0.7.3",
    "jest": "^24.1.0",
    "mocha": "^6.0.1",
    "ts-node": "^8.0.2",
    "typescript": "^3.3.3333",
    "uglifyjs-webpack-plugin": "^2.1.2",
    "webpack": "^4.29.5",
    "webpack-cli": "^3.2.3"
  },
  "dependencies": {
    "aes-js": "^3.1.2",
    "axios": "^0.18.0",
    "bech32": "^1.1.3",
    "bn.js": "^4.11.8",
    "elliptic": "^6.4.1",
    "hash.js": "^1.1.7",
    "js-sha3": "^0.8.0",
    "scrypt-js": "^2.0.4",
    "uuid": "^3.3.2"
  }
}
