js-libp2p-secio/package.json

74 lines
1.9 KiB
JSON
Raw Normal View History

2016-05-20 21:29:53 +02:00
{
"name": "libp2p-secio",
2017-07-22 15:45:31 -07:00
"version": "0.7.1",
2016-05-20 21:29:53 +02:00
"description": "Secio implementation in JavaScript",
"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",
2017-02-10 16:02:11 -08:00
"release": "gulp release --dom",
2016-11-08 18:51:28 +01:00
"release-minor": "gulp release --type minor",
"release-major": "gulp release --type major",
2016-05-20 21:29:53 +02:00
"coverage": "aegir-coverage",
"coverage-publish": "aegir-coverage publish",
"bench": "node benchmarks/send.js"
2016-05-20 21:29:53 +02:00
},
"keywords": [
"IPFS",
"libp2p",
"crypto",
"rsa"
],
"author": "Friedel Ziegelmayer <dignifiedquire@gmail.com>",
2016-05-20 21:29:53 +02:00
"license": "MIT",
"dependencies": {
"async": "^2.5.0",
"debug": "^2.6.8",
2017-03-21 15:13:03 +00:00
"interface-connection": "~0.3.2",
"libp2p-crypto": "~0.9.4",
"multihashing-async": "~0.4.6",
"peer-id": "~0.9.0",
2017-01-22 17:04:12 +01:00
"protocol-buffers": "^3.2.1",
"pull-defer": "^0.2.2",
"pull-handshake": "^1.1.4",
"pull-length-prefixed": "^1.3.0",
"pull-stream": "^3.6.0"
2016-05-20 21:29:53 +02:00
},
"devDependencies": {
"aegir": "^11.0.2",
"benchmark": "^2.1.4",
"chai": "^4.1.0",
"dirty-chai": "^2.0.1",
2016-11-08 18:51:28 +01:00
"gulp": "^3.9.1",
"libp2p-websockets": "~0.10.0",
2017-03-21 15:13:03 +00:00
"multistream-select": "^0.13.5",
2017-01-22 17:04:12 +01:00
"pre-commit": "^1.2.2",
"pull-goodbye": "0.0.2",
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": {
"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>",
2017-02-09 11:54:15 -08:00
"Dmitriy Ryajov <dryajov@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-03-21 15:13:28 +00:00
}