This repository has been archived by the owner on Aug 24, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
66 lines (66 loc) · 1.82 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
{
"name": "ipld-git",
"version": "0.6.6",
"description": "JavaScript Implementation of Git IPLD format",
"leadMaintainer": "Volker Mische <volker.mische@gmail.com>",
"main": "src/index.js",
"scripts": {
"test": "aegir test",
"test:browser": "aegir test --target browser",
"test:node": "aegir test --target node",
"lint": "aegir lint",
"release": "aegir release",
"release-minor": "aegir release --type minor",
"release-major": "aegir release --type major",
"build": "aegir build"
},
"pre-push": [
"lint",
"test"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ipld/js-ipld-git.git"
},
"keywords": [
"IPFS"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ipld/js-ipld-git/issues"
},
"engines": {
"node": ">=6.0.0",
"npm": ">=3.0.0"
},
"homepage": "https://github.com/ipld/js-ipld-git",
"dependencies": {
"buffer": "^6.0.3",
"cids": "^1.0.0",
"multicodec": "^3.0.1",
"multihashing-async": "^2.0.1",
"smart-buffer": "^4.1.0",
"strftime": "^0.10.0",
"uint8arrays": "^3.0.0"
},
"devDependencies": {
"aegir": "^31.0.1",
"assert": "^2.0.0",
"browserify-zlib": "^0.2.0",
"events": "^3.3.0",
"readable-stream": "^3.6.0"
},
"contributors": [
"Volker Mische <volker.mische@gmail.com>",
"David Dias <daviddias.p@gmail.com>",
"achingbrain <alex@achingbrain.net>",
"Łukasz Magiera <magik6k@gmail.com>",
"Richard Schneider <makaretu@gmail.com>",
"Jonah Weissman <jonahrweissman@gmail.com>",
"ᴠɪᴄᴛᴏʀ ʙᴊᴇʟᴋʜᴏʟᴍ <victorbjelkholm@gmail.com>",
"Sameer Puri <11097096+sameer@users.noreply.github.com>",
"Vasco Santos <vasco.santos@ua.pt>",
"phillmac <phillmac@users.noreply.github.com>",
"Alan Shaw <alan.shaw@protocol.ai>"
]
}