@tangle.js/anchors
Version:
Anchoring messages to the Tangle. Powered by IOTA Streams
69 lines (68 loc) • 2.33 kB
JSON
{
"name": "@tangle.js/anchors",
"version": "0.9.1",
"description": "Anchoring messages to the Tangle. Powered by IOTA Streams",
"scripts": {
"build-clean": "rimraf ./es/* ./typings/*",
"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=120000 --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": "run-s dist-clean build test package"
},
"repository": {
"type": "git",
"url": "https://github.com/iotaledger/tangle.js.git"
},
"keywords": [
"iota",
"chrysalis",
"streams",
"anchor",
"channels"
],
"engines": {
"node": "14.x"
},
"author": "Jose M. Cantera",
"license": "Apache 2.0",
"bugs": {
"url": "https://github.com/iotaledger/tangle.js.git/issues"
},
"homepage": "https://github.com/iotaledger/tangle.js.git/anchors/README.md",
"dependencies": {
"@tangle.js/iota_streams_wasm": "0.0.1",
"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"
}