-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 955 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 955 Bytes
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
{
"name": "ipld-example",
"version": "1.0.0",
"type": "module",
"description": "Examples for generating IPLD graphs in JavaScript",
"main": "ipld-example.js",
"scripts": {
"lint": "standard",
"types": "tsc --build",
"test": "npm run lint && npm run types && node ipld-example.js && node ipld-example.js inspect > test-actual-output && diff test-expected-output test-actual-output && rm test-actual-output"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/ipld/js-ipld-example.git"
},
"keywords": [
"ipld"
],
"author": "Rod <rod@vagg.org> (http://r.va.gg/)",
"license": "(Apache-2.0 AND MIT)",
"homepage": "https://github.com/ipld/js-ipld-example#readme",
"dependencies": {
"@ipld/car": "^5.0.0",
"@ipld/dag-cbor": "^10.0.1",
"@ipld/dag-json": "^11.0.0",
"multiformats": "^14.0.0"
},
"devDependencies": {
"standard": "^17.0.0",
"typescript": "^6.0.2"
}
}