2016-05-20 21:29:53 +02:00
|
|
|
{
|
|
|
|
"name": "libp2p-secio",
|
2016-09-06 16:45:29 -04:00
|
|
|
"version": "0.4.0",
|
2016-05-20 21:29:53 +02:00
|
|
|
"description": "Secio implementation in JavaScript",
|
|
|
|
"main": "lib/index.js",
|
|
|
|
"jsnext:main": "src/index.js",
|
|
|
|
"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",
|
|
|
|
"coverage-publish": "aegir-coverage publish"
|
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"IPFS",
|
|
|
|
"libp2p",
|
|
|
|
"crypto",
|
|
|
|
"rsa"
|
|
|
|
],
|
|
|
|
"author": "Friedel Ziegelmayer <dignifiedqurie@gmail.com>",
|
|
|
|
"license": "MIT",
|
|
|
|
"dependencies": {
|
2016-05-21 17:36:13 +02:00
|
|
|
"debug": "^2.2.0",
|
2016-06-13 19:10:38 +02:00
|
|
|
"interface-connection": "^0.2.1",
|
2016-05-26 19:44:13 +02:00
|
|
|
"libp2p-crypto": "^0.5.0",
|
2016-05-21 17:36:13 +02:00
|
|
|
"multihashing": "^0.2.1",
|
2016-06-13 19:10:38 +02:00
|
|
|
"node-forge": "^0.6.42",
|
2016-08-04 19:09:44 +02:00
|
|
|
"peer-id": "^0.7.0",
|
2016-05-22 18:36:31 +02:00
|
|
|
"protocol-buffers": "^3.1.6",
|
2016-06-13 19:10:38 +02:00
|
|
|
"pull-defer": "^0.2.2",
|
|
|
|
"pull-handshake": "^1.1.4",
|
|
|
|
"pull-length-prefixed": "^1.2.0",
|
|
|
|
"pull-stream": "^3.4.3",
|
|
|
|
"pull-through": "^1.0.18",
|
|
|
|
"run-series": "^1.1.4"
|
2016-05-20 21:29:53 +02:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2016-06-13 19:10:38 +02:00
|
|
|
"aegir": "^8.0.0",
|
2016-05-20 21:29:53 +02:00
|
|
|
"chai": "^3.5.0",
|
2016-06-13 19:10:38 +02:00
|
|
|
"multistream-select": "^0.11.0",
|
2016-05-22 13:19:17 +02:00
|
|
|
"pre-commit": "^1.1.3",
|
2016-06-13 19:10:38 +02:00
|
|
|
"pull-pair": "^1.1.0",
|
|
|
|
"run-parallel": "^1.1.6"
|
2016-05-20 21:29:53 +02:00
|
|
|
},
|
|
|
|
"pre-commit": [
|
|
|
|
"lint",
|
|
|
|
"test"
|
|
|
|
],
|
|
|
|
"engines": {
|
|
|
|
"node": "^4.0.0"
|
|
|
|
},
|
|
|
|
"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: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-09-06 16:46:16 -04:00
|
|
|
}
|