2016-05-20 21:29:53 +02:00
|
|
|
{
|
|
|
|
"name": "libp2p-secio",
|
2016-11-03 10:42:35 +00:00
|
|
|
"version": "0.6.2",
|
2016-05-20 21:29:53 +02:00
|
|
|
"description": "Secio implementation in JavaScript",
|
2016-11-03 10:23:33 +01:00
|
|
|
"main": "src/index.js",
|
2016-05-20 21:29:53 +02:00
|
|
|
"scripts": {
|
|
|
|
"lint": "aegir-lint",
|
|
|
|
"build": "aegir-build",
|
|
|
|
"test": "aegir-test",
|
|
|
|
"test:node": "aegir-test --env node",
|
|
|
|
"test:browser": "aegir-test --env browser",
|
|
|
|
"release": "aegir-release",
|
|
|
|
"release-minor": "aegir-release --type minor",
|
|
|
|
"release-major": "aegir-release --type major",
|
|
|
|
"coverage": "aegir-coverage",
|
2016-11-03 10:23:33 +01:00
|
|
|
"coverage-publish": "aegir-coverage publish",
|
|
|
|
"bench": "node benchmarks/send.js"
|
2016-05-20 21:29:53 +02:00
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"IPFS",
|
|
|
|
"libp2p",
|
|
|
|
"crypto",
|
|
|
|
"rsa"
|
|
|
|
],
|
2016-11-03 10:23:33 +01:00
|
|
|
"author": "Friedel Ziegelmayer <dignifiedquire@gmail.com>",
|
2016-05-20 21:29:53 +02:00
|
|
|
"license": "MIT",
|
|
|
|
"dependencies": {
|
2016-11-03 10:23:33 +01:00
|
|
|
"async": "^2.1.2",
|
2016-11-08 17:22:15 +00:00
|
|
|
"debug": "^2.3.0",
|
2016-11-03 10:23:33 +01:00
|
|
|
"interface-connection": "^0.3.0",
|
|
|
|
"libp2p-crypto": "^0.7.0",
|
|
|
|
"multihashing-async": "^0.2.0",
|
|
|
|
"peer-id": "^0.8.0",
|
2016-11-08 17:22:15 +00:00
|
|
|
"protocol-buffers": "^3.1.8",
|
2016-06-13 19:10:38 +02:00
|
|
|
"pull-defer": "^0.2.2",
|
|
|
|
"pull-handshake": "^1.1.4",
|
|
|
|
"pull-length-prefixed": "^1.2.0",
|
2016-11-03 10:23:33 +01:00
|
|
|
"pull-stream": "^3.5.0"
|
2016-05-20 21:29:53 +02:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2016-11-08 17:22:15 +00:00
|
|
|
"aegir": "^9.1.1",
|
2016-11-03 10:23:33 +01:00
|
|
|
"benchmark": "^2.1.2",
|
2016-05-20 21:29:53 +02:00
|
|
|
"chai": "^3.5.0",
|
2016-11-08 17:22:15 +00:00
|
|
|
"libp2p-websockets": "^0.9.1",
|
2016-11-03 10:42:15 +00:00
|
|
|
"multistream-select": "^0.13.0",
|
2016-05-22 13:19:17 +02:00
|
|
|
"pre-commit": "^1.1.3",
|
2016-11-08 17:22:15 +00:00
|
|
|
"pull-goodbye": "0.0.1",
|
2016-06-13 19:10:38 +02:00
|
|
|
"pull-pair": "^1.1.0",
|
2016-11-03 10:23:33 +01:00
|
|
|
"pull-pushable": "^2.0.1"
|
2016-05-20 21:29:53 +02:00
|
|
|
},
|
|
|
|
"pre-commit": [
|
|
|
|
"lint",
|
|
|
|
"test"
|
|
|
|
],
|
|
|
|
"engines": {
|
2016-11-03 10:23:33 +01:00
|
|
|
"node": ">=4.0.0"
|
2016-05-20 21:29:53 +02:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/ipfs/js-libp2p-secio.git"
|
|
|
|
},
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/ipfs/js-libp2p-secio/issues"
|
|
|
|
},
|
2016-05-23 13:52:58 +02:00
|
|
|
"homepage": "https://github.com/ipfs/js-libp2p-secio",
|
|
|
|
"contributors": [
|
2016-09-06 16:55:24 -04:00
|
|
|
"David Dias <daviddias.p@gmail.com>",
|
2016-09-06 16:45:28 -04:00
|
|
|
"Friedel Ziegelmayer <dignifiedquire@gmail.com>",
|
|
|
|
"Richard Littauer <richard.littauer@gmail.com>",
|
|
|
|
"greenkeeperio-bot <support@greenkeeper.io>"
|
2016-05-23 13:52:58 +02:00
|
|
|
]
|
2016-11-08 17:22:15 +00:00
|
|
|
}
|