This repository has been archived by the owner on Sep 9, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
76 lines (76 loc) · 2.17 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "interface-datastore",
"version": "4.0.2",
"description": "datastore interface",
"leadMaintainer": "Alex Potsides <alex.potsides@protocol.ai>",
"main": "src/index.js",
"types": "dist/src/index.d.ts",
"files": [
"src",
"dist"
],
"scripts": {
"prepare": "aegir build --no-bundle",
"lint": "aegir ts -p check && aegir lint",
"test": "aegir test",
"test:node": "aegir test --target node",
"test:browser": "aegir test --target browser",
"release": "aegir release --docs",
"release-minor": "aegir release --type minor --docs",
"release-major": "aegir release --type major --docs",
"coverage": "aegir test --cov",
"docs": "aegir docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ipfs/interface-datastore.git"
},
"keywords": [
"interface",
"key-value",
"ipfs",
"datastore"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ipfs/interface-datastore/issues"
},
"homepage": "https://github.com/ipfs/interface-datastore#readme",
"devDependencies": {
"aegir": "^33.1.0",
"it-map": "^1.0.5"
},
"dependencies": {
"err-code": "^3.0.1",
"interface-store": "^0.0.2",
"ipfs-utils": "^8.1.2",
"iso-random-stream": "^2.0.0",
"it-all": "^1.0.2",
"it-drain": "^1.0.1",
"it-filter": "^1.0.2",
"it-take": "^1.0.1",
"nanoid": "^3.0.2",
"uint8arrays": "^2.1.5"
},
"eslintConfig": {
"extends": "ipfs"
},
"contributors": [
"achingbrain <alex@achingbrain.net>",
"David Dias <daviddias.p@gmail.com>",
"Friedel Ziegelmayer <dignifiedquire@gmail.com>",
"Juan Batiz-Benet <juan@benet.ai>",
"Pedro Teixeira <i@pgte.me>",
"Jacob Heun <jacobheun@gmail.com>",
"Hugo Dias <hugomrdias@gmail.com>",
"Vasco Santos <vasco.santos@moxy.studio>",
"Hector Sanjuan <code@hector.link>",
"Richard Schneider <makaretu@gmail.com>",
"ᴠɪᴄᴛᴏʀ ʙᴊᴇʟᴋʜᴏʟᴍ <victorbjelkholm@gmail.com>",
"Alan Shaw <alan.shaw@protocol.ai>",
"Carson Farmer <carson.farmer@gmail.com>",
"Erin Dachtler <download333@gmail.com>",
"tcme <hi@this-connect.me>",
"Adam Uhlir <adam@uhlir.dev>"
]
}