-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
63 lines (63 loc) · 1.56 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
{
"name": "ipfs-car",
"version": "1.2.0",
"description": "Convert files to content-addressed archives (.car) and back",
"type": "module",
"main": "index.js",
"types": "index.d.ts",
"bin": {
"🚘": "./bin.js",
"ipfs-car": "./bin.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/web3-storage/ipfs-car.git"
},
"keywords": [
"ipfs",
"content-addressable",
"cid",
"car"
],
"author": "vasco-santos",
"license": "Apache-2.0 OR MIT",
"scripts": {
"lint": "standard",
"test": "npm run test:node && npm run test:browser",
"test:node": "hundreds -r html -r text mocha 'test/**/!(*.browser).test.js' -n experimental-vm-modules -n no-warnings",
"test:browser": "playwright-test 'test/**/!(*.node).test.js'"
},
"bugs": {
"url": "https://github.com/web3-storage/ipfs-car/issues"
},
"homepage": "https://github.com/web3-storage/ipfs-car#readme",
"dependencies": {
"@ipld/car": "^5.1.0",
"@ipld/dag-cbor": "^9.0.0",
"@ipld/dag-json": "^10.0.1",
"@ipld/dag-pb": "^4.0.2",
"@ipld/unixfs": "^3.0.0",
"@web3-storage/car-block-validator": "^1.0.1",
"files-from-path": "^1.0.0",
"ipfs-unixfs-exporter": "^13.0.1",
"multiformats": "^13.0.1",
"sade": "^1.8.1",
"varint": "^6.0.0"
},
"devDependencies": {
"assert": "^2.0.0",
"execa": "^7.1.1",
"hundreds": "^0.0.9",
"mocha": "^10.2.0",
"playwright-test": "^8.2.0",
"standard": "^17.0.0"
},
"standard": {
"ignore": [
"*.ts"
]
},
"engines": {
"node": ">=18"
}
}