UNPKG

2.32 kBJSONView Raw
1{
2 "name": "libp2p-record",
3 "version": "0.10.4",
4 "description": "libp2p record implementation",
5 "leadMaintainer": "Vasco Santos <vasco.santos@moxy.studio>",
6 "main": "src/index.js",
7 "scripts": {
8 "test": "aegir test",
9 "lint": "aegir lint",
10 "test:node": "aegir test -t node",
11 "test:browser": "aegir test -t browser -t webworker",
12 "prepare": "npm run build",
13 "build": "run-s build:*",
14 "build:types": "aegir build --no-bundle",
15 "build:proto": "pbjs -t static-module -w commonjs -r libp2p-record --force-number --no-verify --no-delimited --no-create --no-beautify --no-defaults --lint eslint-disable -o src/record/record.js ./src/record/record.proto",
16 "build:proto-types": "pbts -o src/record/record.d.ts src/record/record.js",
17 "docs": "aegir docs",
18 "release": "aegir release",
19 "release-minor": "aegir release --type minor",
20 "release-major": "aegir release --type major",
21 "coverage": "aegir coverage"
22 },
23 "repository": {
24 "type": "git",
25 "url": "https://github.com/libp2p/js-libp2p-record.git"
26 },
27 "keywords": [
28 "IPFS"
29 ],
30 "engines": {
31 "node": ">=14.0.0"
32 },
33 "pre-push": [
34 "lint"
35 ],
36 "author": "Friedel Ziegelmayer <dignifiedquire@gmail.com>",
37 "license": "MIT",
38 "bugs": {
39 "url": "https://github.com/libp2p/js-libp2p-record/issues"
40 },
41 "homepage": "https://github.com/libp2p/js-libp2p-record",
42 "files": [
43 "src",
44 "dist"
45 ],
46 "eslintConfig": {
47 "extends": "ipfs"
48 },
49 "types": "dist/src/index.d.ts",
50 "devDependencies": {
51 "aegir": "^33.0.0",
52 "libp2p-crypto": "^0.19.0",
53 "libp2p-interfaces": "^0.12.0",
54 "npm-run-all": "^4.1.5",
55 "peer-id": "^0.14.0"
56 },
57 "dependencies": {
58 "err-code": "^3.0.0",
59 "multiformats": "^9.1.2",
60 "protobufjs": "^6.10.2",
61 "uint8arrays": "^2.0.5"
62 },
63 "contributors": [
64 "Vasco Santos <vasco.santos@moxy.studio>",
65 "David Dias <daviddias.p@gmail.com>",
66 "Alex Potsides <alex@achingbrain.net>",
67 "Hugo Dias <hugomrdias@gmail.com>",
68 "Jacob Heun <jacobheun@gmail.com>",
69 "Friedel Ziegelmayer <dignifiedquire@gmail.com>",
70 "ᴠɪᴄᴛᴏʀ ʙᴊᴇʟᴋʜᴏʟᴍ <victorbjelkholm@gmail.com>",
71 "Matt Joiner <anacrolix@gmail.com>",
72 "dirkmc <dirkmdev@gmail.com>",
73 "Alan Shaw <alan.shaw@protocol.ai>"
74 ]
75}