|
| 1 | +{ |
| 2 | + "name": "libp2p-pubsub-gossip", |
| 3 | + "version": "0.0.0", |
| 4 | + "description": "libp2p-pubsub-gossip, also known as pubsub-flood or just dumbsub, this implementation of pubsub focused on delivering an API for Publish/Subscribe, but with no CastTree Forming (it just floods the network).", |
| 5 | + "main": "lib/core/index.js", |
| 6 | + "jsnext:main": "src/core/index.js", |
| 7 | + "scripts": { |
| 8 | + "lint": "aegir-lint", |
| 9 | + "coverage": "gulp coverage", |
| 10 | + "test": "PHANTOM=off gulp test", |
| 11 | + "test:node": "gulp test:node", |
| 12 | + "test:node:core": "TEST=core npm run test:node", |
| 13 | + "test:node:http": "TEST=http npm run test:node", |
| 14 | + "test:node:cli": "TEST=cli npm run test:node", |
| 15 | + "test:browser": "PHANTOM=off gulp test:browser", |
| 16 | + "build": "gulp build", |
| 17 | + "release": "PHANTOM=off gulp release", |
| 18 | + "release-minor": "PHANTOM=off gulp release --type minor", |
| 19 | + "release-major": "PHANTOM=off gulp release --type major", |
| 20 | + "coverage-publish": "aegir-coverage publish" |
| 21 | + }, |
| 22 | + "pre-commit": [ |
| 23 | + "lint", |
| 24 | + "test" |
| 25 | + ], |
| 26 | + "repository": { |
| 27 | + "type": "git", |
| 28 | + "url": "git+https://github.com/libp2p/js-libp2p-pubsub-gossip.git" |
| 29 | + }, |
| 30 | + "keywords": [ |
| 31 | + "IPFS", |
| 32 | + "libp2p", |
| 33 | + "pubsub", |
| 34 | + "gossip", |
| 35 | + "flood", |
| 36 | + "flooding" |
| 37 | + ], |
| 38 | + "author": "David Dias <[email protected]>", |
| 39 | + "license": "MIT", |
| 40 | + "bugs": { |
| 41 | + "url": "https://github.com/libp2p/js-libp2p-pubsub-gossip/issues" |
| 42 | + }, |
| 43 | + "homepage": "https://github.com/libp2p/js-libp2p-pubsub-gossip#readme", |
| 44 | + "devDependencies": { |
| 45 | + "aegir": "^8.0.1", |
| 46 | + "chai": "^3.5.0", |
| 47 | + "libp2p-ipfs": "^0.14.1", |
| 48 | + "lodash.times": "^4.3.2", |
| 49 | + "multiaddr": "^2.0.3", |
| 50 | + "peer-id": "^0.7.0", |
| 51 | + "peer-info": "^0.7.1", |
| 52 | + "pre-commit": "^1.1.3", |
| 53 | + "run-parallel": "^1.1.6", |
| 54 | + "run-series": "^1.1.4" |
| 55 | + }, |
| 56 | + "dependencies": { |
| 57 | + "debug": "^2.2.0", |
| 58 | + "git-sha1": "^0.1.2", |
| 59 | + "length-prefixed-stream": "^1.5.0", |
| 60 | + "lodash.intersection": "^4.4.0", |
| 61 | + "lodash.uniq": "^4.5.0", |
| 62 | + "lodash.values": "^4.3.0", |
| 63 | + "time-cache": "^0.2.3" |
| 64 | + } |
| 65 | +} |
0 commit comments