{
  "name": "@cosmic-plus/tx-params",
  "version": "1.0.0",
  "description": "Stellar transactions parsing, conversion and description",
  "author": "MisterTicot <mister.ticot@cosmic.plus>",
  "homepage": "https://cosmic.plus/#view:js-tx-params",
  "repository": "github:cosmic-plus/js-tx-params",
  "license": "MIT",
  "main": "src/index.js",
  "module": "es5/index.js",
  "browserslist": "extends @kisbox/browserslist-config",
  "keywords": [
    "stellar",
    "transaction",
    "request",
    "CosmicLink",
    "browser",
    "node"
  ],
  "scripts": {
    "test": "jasmine 'test/**/*.spec.js'",
    "get": "git submodule update -i --recursive",
    "clean": "rm -rf es5/* web/*",
    "prettier": "prettier --write --no-semi --trailing-comma none '{src,test,testkit}/**/*.{js,json,md}' '*.{js,json,md}'",
    "eslint": "eslint --fix '{src,test,testkit}/**/*.js' '*.js'",
    "lint": "npm run prettier && npm run eslint",
    "build-es5": "babel --out-dir es5 src",
    "build-js": "npm run build-es5 && webpack -p",
    "build-static": "cp -a static/. web",
    "build-misc": "cp -f *.md package-lock.json web",
    "build-all": "for i in js static misc; do npm run build-$i || return; done",
    "build": "npm run clean && npm run build-all",
    "rebuild": "npm run get && cp -f web/package-lock.json . && npm ci && npm run build",
    "check-build": "npm run rebuild && cd web && git status && [ ! \"$(git status -z)\" ]",
    "check": "npm run test && npm run check-build",
    "watch-es5": "babel --watch --out-dir es5 src",
    "watch": "npm run build-es5; webpack -d --watch & npm run watch-es5",
    "commit-web": "cd web && git ci -am \"$message\"",
    "commit-main": "git ci -am \"$message\"",
    "commit-all": "[ \"$version\" ] && npm run commit-web && npm run commit-main",
    "commit-release": "export message=\"Release $version\" && npm run commit-all",
    "tag-web": "cd web && git tag -s \"$version\" -m \"$message\"",
    "tag-main": "git tag -s \"$version\" -m \"$message\"",
    "tag-all": "[ \"$version\" -a \"$message\" ] && npm run tag-web && npm run tag-main",
    "tag-release": "export version message=\"Release $version\" && npm run tag-all",
    "push-release": "cd web && git push --follow-tags && cd .. && git push --follow-tags",
    "make-release": "npm update && npm run build && npm run commit-release",
    "publish-release": "npm run check && npm run tag-release && npm run push-release && npm publish"
  },
  "devDependencies": {
    "@babel/cli": "^7.15.4",
    "@babel/core": "^7.15.5",
    "@babel/plugin-transform-runtime": "^7.15.0",
    "@babel/preset-env": "^7.15.6",
    "@kisbox/browserslist-config": "^1.0.0-beta.21",
    "cosmic-lib": "^2.23.0",
    "eslint": "^7.32.0",
    "fast-deep-equal": "^3.1.3",
    "jasmine": "^3.9.0",
    "prettier": "^2.4.0",
    "stellar-sdk": "^8.2.5",
    "webpack": "^4.46.0",
    "webpack-cli": "^3.3.12"
  },
  "dependencies": {
    "@babel/runtime": "^7.15.4",
    "@cosmic-plus/base": "^2.11.0",
    "@cosmic-plus/helpers": "^1.1.0",
    "@cosmic-plus/utils": "^1.1.0",
    "@kisbox/helpers": "^1.0.0-beta.21",
    "@kisbox/model": "^1.0.0-beta.21",
    "@kisbox/utils": "^1.0.0-beta.21",
    "core-js": "^3.17.3"
  }
}
