This repository has been archived by the owner on Mar 10, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
97 lines (97 loc) · 2.77 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "ipfs-mfs",
"version": "1.0.0",
"description": "JavaScript implementation of the IPFS Mutable File System",
"leadMaintainer": "Alex Potsides <[email protected]>",
"main": "src/index.js",
"browser": {
"@hapi/joi": "joi-browser",
"fs": false
},
"scripts": {
"test": "aegir test",
"test:node": "aegir test -t node",
"test:cli": "aegir test -t node -f test/cli/index.js",
"test:core": "aegir test -t node -f test/core/index.js",
"test:http": "aegir test -t node -f test/http/index.js",
"test:browser": "aegir test -t browser",
"test:webworker": "aegir test -t webworker",
"build": "aegir build",
"lint": "aegir lint",
"release": "aegir release",
"release-minor": "aegir release --type minor",
"release-major": "aegir release --type major",
"coverage": "nyc --reporter=text --reporter=lcov --reporter=html npm run test:node",
"dep-check": "aegir dep-check"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ipfs/js-ipfs-mfs.git"
},
"keywords": [
"IPFS"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ipfs/js-ipfs-mfs/issues"
},
"engines": {
"node": ">=8.0.0",
"npm": ">=3.0.0"
},
"homepage": "https://github.com/ipfs/js-ipfs-mfs#readme",
"devDependencies": {
"@hapi/hapi": "^18.4.0",
"aegir": "^20.0.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"delay": "^4.3.0",
"detect-node": "^2.0.4",
"detect-webworker": "^1.0.0",
"dirty-chai": "^2.0.1",
"form-data": "^3.0.0",
"ipfs-block": "^0.8.1",
"ipfs-block-service": "~0.16.0",
"ipfs-repo": "^0.30.1",
"ipld": "~0.25.0",
"memdown": "^5.1.0",
"nyc": "^15.0.0",
"sinon": "^8.0.4",
"stream-to-promise": "^2.2.0",
"temp-write": "^4.0.0",
"yargs": "^15.0.2",
"yargs-promise": "^1.1.0"
},
"dependencies": {
"@hapi/boom": "^7.4.2",
"@hapi/joi": "^15.1.0",
"cids": "^0.7.1",
"debug": "^4.1.0",
"err-code": "^2.0.0",
"hamt-sharding": "^1.0.0",
"interface-datastore": "^0.8.0",
"ipfs-multipart": "^0.3.0",
"ipfs-unixfs": "^0.3.0",
"ipfs-unixfs-exporter": "^0.41.0",
"ipfs-unixfs-importer": "^0.44.0",
"ipfs-utils": "^0.7.0",
"ipld-dag-pb": "^0.18.0",
"it-all": "^1.0.1",
"it-last": "^1.0.1",
"it-to-stream": "^0.1.1",
"it-pipe": "^1.0.1",
"joi-browser": "^13.4.0",
"mortice": "^2.0.0",
"multicodec": "^1.0.0",
"multihashes": "^0.4.14"
},
"contributors": [
"Alan Shaw <[email protected]>",
"David <[email protected]>",
"David Dias <[email protected]>",
"Jacob Heun <[email protected]>",
"Vasco Santos <[email protected]>",
"Volker Mische <[email protected]>",
"achingbrain <[email protected]>"
]
}