ipfs-coord
Version:
A JS library for helping IPFS peers coordinate, find a common interest, and stay connected around that interest.
78 lines (77 loc) • 2.09 kB
JSON
{
"name": "ipfs-coord",
"version": "8.0.8",
"description": "A JS library for helping IPFS peers coordinate, find a common interest, and stay connected around that interest.",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "npm run lint && TEST=unit nyc mocha --timeout=15000 --exit --recursive test/unit/",
"test:integration": "mocha --timeout 25000 test/integration/",
"lint": "standard --env mocha --fix",
"docs": "./node_modules/.bin/apidoc -i src/ -o docs",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"coverage:report": "nyc --reporter=html mocha test/unit/ --exit --recursive",
"test:temp": "npm run lint && TEST=unit nyc mocha -g --timeout=15000 '#generatePrivateKey' test/unit/"
},
"keywords": [
"bitcoin",
"bitcoin cash",
"wallet",
"javascript",
"cryptocurrency",
"react",
"front end",
"client",
"apidoc",
"slp",
"tokens"
],
"author": "Chris Troutner <chris.troutner@gmail.com>",
"license": "MIT",
"apidoc": {
"title": "ipfs-coord",
"url": "localhost:5000"
},
"repository": "Permissionless-Software-Foundation/ipfs-coord",
"devDependencies": {
"@psf/bch-js": "6.6.0",
"apidoc": "0.25.0",
"chai": "4.2.0",
"coveralls": "3.1.0",
"eslint": "7.17.0",
"eslint-config-prettier": "7.1.0",
"eslint-config-standard": "16.0.2",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "3.3.1",
"eslint-plugin-standard": "4.0.0",
"husky": "4.3.6",
"lodash.clonedeep": "4.5.0",
"mocha": "8.4.0",
"nyc": "15.1.0",
"semantic-release": "17.4.4",
"sinon": "9.2.2",
"standard": "16.0.3"
},
"release": {
"publish": [
{
"path": "@semantic-release/npm",
"npmPublish": true
}
]
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"dependencies": {
"axios": "0.21.4",
"bch-encrypt-lib": "2.0.0",
"uuid": "8.3.2"
},
"peerDependencies": {
"ipfs": ">= 0.58.6",
"ipfs-http-client": ">= 55.0.0"
}
}