-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
54 lines (54 loc) · 1.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
{
"name": "ipfs-mini",
"version": "1.1.3",
"description": "A super tiny module for querying an IPFS node that works in nodejs and the browser.",
"main": "lib/index.js",
"files": [
"dist",
"internals",
"examples",
"lib",
"src"
],
"scripts": {
"start": "npm test",
"test": "mocha ./src/tests/**/*.js -R spec --timeout 2000000"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/silentcicero/ipfs-mini.git"
},
"keywords": [
"ipfs",
"api",
"add",
"cat",
"provider",
"node",
"browser"
],
"authors": [
"Nick Dodson <nick.dodson@consensys.net>"
],
"engines": {
"npm": ">=3",
"node": ">=6.5.0"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/silentcicero/ipfs-mini/issues"
},
"homepage": "https://github.com/silentcicero/ipfs-mini#readme",
"browser": {
"xmlhttprequest": false,
"./src/lib/XMLHttpRequest.js": "./src/lib/XMLHttpRequest-browser.js",
"./lib/lib/XMLHttpRequest.js": "./lib/lib/XMLHttpRequest-browser.js"
},
"dependencies": {
"xmlhttprequest": "^1.8.0"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^5.2.0"
}
}