-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
65 lines (65 loc) · 1.48 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": "kubo",
"version": "0.32.1",
"description": "Install the latest Kubo (go-ipfs) binary",
"main": "src/index.js",
"scripts": {
"postinstall": "node src/post-install.js",
"restore-bin": "git reset -- bin/ipfs && git checkout -- bin/ipfs",
"test": "tape test/*.js | tap-spec",
"lint": "tsc --noEmit && standard",
"prepublishOnly": "tsc"
},
"pre-commit": "restore-bin",
"bin": {
"ipfs": "bin/ipfs"
},
"files": [
"bin",
"dist",
"src",
"test",
"LICENSE",
"package.json",
"README.md",
"tsconfig.json"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ipfs/npm-kubo.git"
},
"keywords": [
"ipfs",
"install"
],
"author": "Protocol Labs, Inc.",
"license": "MIT",
"bugs": {
"url": "https://github.com/ipfs/npm-kubo/issues"
},
"homepage": "https://github.com/ipfs/npm-kubo",
"types": "./src/types.d.ts",
"devDependencies": {
"@types/got": "^9.6.12",
"@types/gunzip-maybe": "^1.4.0",
"@types/tar-fs": "^2.0.1",
"@types/unzip-stream": "^0.3.1",
"execa": "^4.0.1",
"fs-extra": "^9.0.0",
"pre-commit": "^1.2.2",
"standard": "^13.1.0",
"tap-spec": "^5.0.0",
"tape": "^4.13.2",
"tape-promise": "^4.0.0",
"typescript": "^4.3.5"
},
"dependencies": {
"cachedir": "^2.3.0",
"got": "^11.7.0",
"gunzip-maybe": "^1.4.2",
"hasha": "^5.2.2",
"pkg-conf": "^3.1.0",
"tar-fs": "^2.1.0",
"unzip-stream": "^0.3.0"
}
}