js-peer-id/package.json

71 lines
2.0 KiB
JSON
Raw Normal View History

2015-07-08 14:51:49 -07:00
{
2015-09-15 17:14:48 +01:00
"name": "peer-id",
2019-01-03 17:10:26 +00:00
"version": "0.12.1",
2015-07-08 14:51:49 -07:00
"description": "IPFS Peer Id implementation in Node.js",
2018-05-06 16:15:42 +02:00
"leadMaintainer": "Pedro Teixeira <i@pgte.me>",
"main": "src/index.js",
"bin": "src/bin.js",
2015-07-08 14:51:49 -07:00
"scripts": {
"lint": "aegir lint",
"build": "aegir build",
"test": "aegir test",
"test:node": "aegir test -t node",
"test:browser": "aegir test -t browser -t webworker",
"release": "aegir release",
"release-minor": "aegir release --type minor",
"release-major": "aegir release --type major",
"coverage": "aegir coverage",
"size": "bundlesize -f dist/index.min.js -s 140kB"
2016-03-05 21:54:18 +00:00
},
"files": [
"src",
"dist"
],
2015-07-08 14:51:49 -07:00
"keywords": [
"IPFS"
],
2015-07-08 15:34:34 -07:00
"license": "MIT",
2015-09-14 11:58:41 +01:00
"engines": {
"node": ">=10.0.0",
"npm": ">=6.0.0"
2015-09-14 11:58:41 +01:00
},
2015-07-08 15:34:34 -07:00
"bugs": {
"url": "https://github.com/libp2p/js-peer-id/issues"
2015-07-08 15:34:34 -07:00
},
"homepage": "https://github.com/libp2p/js-peer-id",
2015-07-08 15:34:34 -07:00
"devDependencies": {
2019-01-03 16:46:46 +00:00
"aegir": "^18.0.2",
"bundlesize": "^0.17.0",
2019-01-03 16:46:46 +00:00
"chai": "^4.2.0",
2018-05-06 16:18:23 +02:00
"dirty-chai": "^2.0.1"
2015-07-08 15:34:34 -07:00
},
"dependencies": {
2018-07-02 19:26:36 +02:00
"async": "^2.6.1",
2018-10-04 11:29:31 +01:00
"class-is": "^1.1.0",
2018-12-05 15:04:04 +00:00
"libp2p-crypto": "~0.16.0",
"multihashes": "~0.4.13"
2016-03-05 21:49:13 +00:00
},
"repository": {
"type": "git",
"url": "https://github.com/libp2p/js-peer-id.git"
2016-03-22 17:01:46 +01:00
},
2016-05-23 15:32:57 +01:00
"contributors": [
"David Dias <daviddias.p@gmail.com>",
"David Dias <mail@daviddias.me>",
2016-11-03 07:52:10 +00:00
"Friedel Ziegelmayer <dignifiedquire@gmail.com>",
2017-12-01 08:51:43 +00:00
"Maciej Krüger <mkg20001@gmail.com>",
2018-07-02 19:28:03 +02:00
"Michael Garvin <gar+gh@danger.computer>",
2018-10-18 11:00:01 +01:00
"Pedro Teixeira <i@pgte.me>",
2016-12-18 08:06:16 +00:00
"Prashanth Chandra <coolshanth94@gmail.com>",
2016-11-03 07:52:10 +00:00
"Richard Littauer <richard.littauer@gmail.com>",
2017-12-20 12:33:36 +00:00
"Richard Schneider <makaretu@gmail.com>",
2016-05-23 15:32:57 +01:00
"Stephen Whitmore <stephen.whitmore@gmail.com>",
2018-10-18 10:57:19 +01:00
"Vasco Santos <vasco.santos@moxy.studio>",
2017-10-12 10:21:43 +02:00
"Yahya <ya7yaz@gmail.com>",
2017-03-16 17:08:03 +00:00
"greenkeeperio-bot <support@greenkeeper.io>",
2016-11-03 07:52:10 +00:00
"nginnever <ginneversource@gmail.com>",
2017-12-01 08:51:43 +00:00
"npmcdn-to-unpkg-bot <npmcdn-to-unpkg-bot@users.noreply.github.com>",
"ᴠɪᴄᴛᴏʀ ʙᴊᴇʟᴋʜᴏʟᴍ <victorbjelkholm@gmail.com>"
2016-05-23 15:32:57 +01:00
]
}