{
    "name": "@jmcanterafonseca-iota/anchoring-channels",
    "version": "0.1.5",
    "description": "Powered by IOTA Streams, Anchor Channels is an easy to be used library that allows to anchor messages to the Tangle.",
    "scripts": {
        "build-clean": "rimraf ./es/*",
        "build-compile": "tsc",
        "build-watch": "tsc --watch",
        "build-lint": "eslint src --ext .ts",
        "build": "npm-run-all build-clean build-compile build-lint",
        "test-lint": "eslint test --ext .ts",
        "test-run": "jest  --testTimeout=60000 --verbose --coverage=false",
        "test": "run-s test-lint test-run",
        "package-umd": "rollup --config rollup.config.js",
        "package-umd-min": "rollup --config rollup.config.js --environment MINIFY:true",
        "package": "run-s package-umd package-umd-min",
        "dist-clean": "rimraf ./dist/* ./typings/*",
        "typings": "tsc --emitDeclarationOnly --declaration true --declarationDir typings",
        "dist": "run-s dist-clean build test package typings"
    },
    "repository": {
        "type": "git",
        "url": "https://github.com/jmcanterafonseca-iota/iota-anchor-channels.git"
    },
    "keywords": [
        "iota",
        "chrysalis",
        "streams",
        "anchor",
        "channels"
    ],
    "engines": {
        "node": "12.x"
    },
    "author": "Jose M. Cantera",
    "license": "Apache 2.0",
    "bugs": {
        "url": "https://github.com/jmcanterafonseca-iota/iota-anchor-channels/issues"
    },
    "homepage": "https://github.com/jmcanterafonseca-iota/iota-anchor-channels#readme",
    "dependencies": {
        "@iota/identity-wasm": "^0.3.1",
        "@jmcanterafonseca-iota/iota_streams_wasm": "0.0.1",
        "bs58": "^4.0.1",
        "elliptic": "^6.5.4",
        "jsonld": "^5.2.0",
        "node-fetch": "^2.6.1"
    },
    "devDependencies": {
        "@rollup/plugin-commonjs": "^19.0.0",
        "@rollup/plugin-node-resolve": "^13.0.0",
        "@rollup/plugin-replace": "^2.4.2",
        "@types/jest": "^26.0.23",
        "@types/node": "^14.0.27",
        "@types/node-fetch": "^2.5.10",
        "@typescript-eslint/eslint-plugin": "^4.2.0",
        "@typescript-eslint/parser": "^4.2.0",
        "eslint": "^7.10.0",
        "eslint-plugin-import": "^2.22.1",
        "eslint-plugin-jsdoc": "^30.6.0",
        "eslint-plugin-unicorn": "^22.0.0",
        "jest": "^27.0.3",
        "npm-run-all": "^4.1.5",
        "rimraf": "^3.0.2",
        "rollup": "^2.50.1",
        "rollup-plugin-terser": "^7.0.2",
        "ts-jest": "^27.0.2",
        "ts-node": "^10.0.0",
        "typescript": "^4.0.3"
    },
    "main": "es/index.js",
    "module": "es/index.js",
    "typings": "typings/index.d.ts"
}
