-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
36 lines (36 loc) · 1.01 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
{
"name": "ipfs-mount",
"version": "0.7.1",
"description": "mount /ipfs /ipns /mfs",
"main": "./dist/index.js",
"bin": {
"mount.ipfs": "./dist/bin/mount.ipfs.js",
"mount.mfs": "./dist/bin/mount.mfs.js"
},
"repository": "https://github.com/piedar/js-ipfs-mount",
"author": "Bennjamin Blast <[email protected]>",
"license": "MIT",
"scripts": {
"prepare": "tsc && sed -i 's,#!/usr/bin/env ts-node,#!/usr/bin/env node,g' ./dist/bin/*.js && chmod +x ./dist/bin/*.js",
"test": "mocha --require ts-node/register ./**/*.spec.ts"
},
"devDependencies": {
"@tsconfig/node14": "^1.0.0",
"@types/chai": "^4.2.21",
"@types/debug": "^4.1.7",
"@types/mocha": "^9.0.0",
"@types/node": "^14",
"@types/uuid": "^8.3.1",
"chai": "^4.3.4",
"mocha": "^9.0.3",
"ts-node": "^10.2.0",
"typescript": "^4.3.5"
},
"dependencies": {
"commander": "^8.1.0",
"debug": "^4.3.2",
"fuse-native": "^2.2.6",
"ipfs-http-client": "^51.0.1",
"uuid": "^8.3.2"
}
}