forked from alanshaw/ipfs-only-hash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 941 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
{
"name": "ipfs-only-hash",
"version": "4.0.0",
"description": "Just enough code to calculate the IPFS hash for some data",
"main": "index.js",
"bin": {
"ipfs-only-hash": "cli.js"
},
"scripts": {
"test": "npm run lint && nyc --reporter=lcov --reporter=text ava --verbose",
"lint": "standard"
},
"keywords": [
"ipfs",
"hash",
"cid"
],
"author": "Alan Shaw",
"license": "MIT",
"devDependencies": {
"@mapbox/node-pre-gyp": "^1.0.1",
"ava": "^3.2.0",
"cids": "^1.1.6",
"ipfs": "^0.54.4",
"nyc": "^15.0.0",
"standard": "^16.0.3"
},
"dependencies": {
"ipfs-unixfs-importer": "^7.0.1",
"meow": "^9.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alanshaw/ipfs-only-hash.git"
},
"bugs": {
"url": "https://github.com/alanshaw/ipfs-only-hash/issues"
},
"homepage": "https://github.com/alanshaw/ipfs-only-hash#readme"
}