2016-05-20 21:29:53 +02:00
|
|
|
{
|
|
|
|
"name": "libp2p-secio",
|
2017-01-22 17:14:21 +01:00
|
|
|
"version": "0.6.5",
|
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",
|
2016-11-08 18:51:28 +01:00
|
|
|
"test": "gulp test",
|
|
|
|
"test:node": "gulp test:node",
|
|
|
|
"test:browser": "gulp test:browser",
|
|
|
|
"release": "gulp release",
|
|
|
|
"release-minor": "gulp release --type minor",
|
|
|
|
"release-major": "gulp release --type major",
|
2016-05-20 21:29:53 +02:00
|
|
|
"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": {
|
2017-01-22 17:04:12 +01:00
|
|
|
"async": "^2.1.4",
|
|
|
|
"debug": "^2.6.0",
|
2017-02-09 11:52:15 -08:00
|
|
|
"interface-connection": "~0.3.1",
|
|
|
|
"libp2p-crypto": "~0.8.1",
|
|
|
|
"multihashing-async": "~0.4.2",
|
|
|
|
"peer-id": "~0.8.2",
|
2017-01-22 17:04:12 +01:00
|
|
|
"protocol-buffers": "^3.2.1",
|
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": {
|
2017-02-09 03:15:04 -08:00
|
|
|
"aegir": "^10.0.0",
|
2017-01-22 17:04:12 +01:00
|
|
|
"benchmark": "^2.1.3",
|
2016-05-20 21:29:53 +02:00
|
|
|
"chai": "^3.5.0",
|
2016-11-08 18:51:28 +01:00
|
|
|
"gulp": "^3.9.1",
|
2017-02-09 11:52:15 -08:00
|
|
|
"libp2p-websockets": "~0.9.2",
|
|
|
|
"multistream-select": "^0.13.4",
|
2017-01-22 17:04:12 +01:00
|
|
|
"pre-commit": "^1.2.2",
|
2016-11-08 17:22:15 +00:00
|
|
|
"pull-goodbye": "0.0.1",
|
2016-11-10 17:47:40 +01:00
|
|
|
"pull-pair": "^1.1.0"
|
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
|
|
|
]
|
2017-02-09 03:15:04 -08:00
|
|
|
}
|