forked from ipfs/js-ipfs-repo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 956 Bytes
/
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
{
"name": "ipfs-repo",
"version": "0.2.2",
"description": "IPFS Repo implementation",
"main": "src/index.js",
"scripts": {
"test": "mocha tests/*-test.js",
"coverage": "istanbul cover --print both -- _mocha tests/*-test.js",
"lint": "standard"
},
"repository": {
"type": "git",
"url": "https://github.com/diasdavid/js-ipfs-repo.git"
},
"keywords": [
"IPFS"
],
"pre-commit": [
"lint",
"test"
],
"homepage": "https://github.com/ipfs/js-ipfs-record",
"devDependencies": {
"bl": "^1.0.0",
"bs58": "^3.0.0",
"chai": "^3.4.1",
"istanbul": "^0.4.1",
"mocha": "^2.3.4",
"ncp": "^2.0.0",
"pre-commit": "^1.1.1",
"rimraf": "^2.4.4",
"standard": "^5.1.1"
},
"dependencies": {
"bl": "^1.0.0",
"concat-stream": "^1.5.1",
"fs-blob-store": "^5.2.0",
"level-js": "^2.2.2",
"lockfile": "^1.0.1",
"multihashes": "^0.2.0",
"xtend": "^4.0.1"
}
}