forked from ipld/js-ipld-git
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.75 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
{
"name": "ipld-git",
"version": "0.2.3",
"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",
"coverage": "aegir coverage"
},
"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": {
"async": "^2.6.0",
"cids": "~0.5.2",
"multicodec": "~0.4.0",
"multihashes": "~0.4.12",
"multihashing-async": "~0.5.1",
"smart-buffer": "^4.0.0",
"traverse": "~0.6.6"
},
"devDependencies": {
"aegir": "^18.0.2",
"chai": "^4.1.2",
"deep-freeze": "0.0.1",
"dirty-chai": "^2.0.1",
"garbage": "0.0.0"
},
"contributors": [
"Alan Shaw <alan.shaw@protocol.ai>",
"David Dias <daviddias.p@gmail.com>",
"Jonah Weissman <jonahrweissman@gmail.com>",
"Richard Schneider <makaretu@gmail.com>",
"Victor Bjelkholm <victorbjelkholm@gmail.com>",
"Volker Mische <volker.mische@gmail.com>",
"greenkeeper[bot] <greenkeeper[bot]@users.noreply.github.com>",
"Łukasz Magiera <magik6k@gmail.com>",
"Łukasz Magiera <magik6k@users.noreply.github.com>"
]
}