This repository was archived by the owner on Dec 6, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
66 lines (66 loc) · 1.93 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
66
{
"name": "datastore-car",
"version": "1.2.0",
"description": "Content ARchive format reader and writer",
"main": "car.js",
"type": "module",
"browser": "./dist/cjs/car-browser.js",
"directories": {
"test": "test"
},
"scripts": {
"build": "npm_config_yes=true ipjs build --tests",
"prepublishOnly": "npm run build",
"lint": "standard",
"test:cjs": "rm -rf dist && npm run build && cp test/go.car dist/cjs/node-test/ && mocha dist/cjs/node-test/test-*.js && npm run test:cjs:browser",
"test:node": "hundreds mocha test/test-*.js",
"test:cjs:browser": "polendina --cleanup dist/cjs/browser-test/test-readbuffer.js dist/cjs/browser-test/test-query.js",
"test": "npm run lint && npm run test:node && npm run test:cjs",
"coverage": "c8 --reporter=html --reporter=text mocha test/test-*.js && npx st -d coverage -p 8888",
"docs": "jsdoc4readme --readme *.js lib/raw.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rvagg/js-datastore-car.git"
},
"keywords": [
"car",
"ipld",
"ipfs"
],
"author": "Rod <rod@vagg.org> (http://r.va.gg/)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/rvagg/js-datastore-car/issues"
},
"homepage": "https://github.com/rvagg/js-datastore-car#readme",
"devDependencies": {
"@ipld/block": "^6.0.3",
"@ipld/dag-cbor": "^1.1.10",
"assert": "^2.0.0",
"bl": "^4.0.3",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"cids": "^1.0.0",
"garbage": "0.0.0",
"hundreds": "0.0.8",
"ipjs": "^3.1.11",
"ipld-dag-pb": "^0.20.0",
"jsdoc4readme": "^1.3.0",
"mocha": "^8.1.2",
"multiformats": "^3.0.3",
"polendina": "^1.1.0",
"standard": "^14.3.4"
},
"dependencies": {
"interface-datastore": "^2.0.0",
"readable-stream": "^3.6.0",
"varint": "^5.0.0"
},
"exports": {
".": {
"import": "./car.js",
"browser": "./car-browser.js"
}
}
}