-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
137 lines (137 loc) · 3.79 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
{
"name": "@ipld/unixfs",
"description": "An implementation of the UnixFS in JavaScript designed for use with multiformats",
"version": "3.0.0",
"files": [
"src",
"gen",
"dist/src",
"dist/gen",
"dist/bundle*",
"unixfs.proto"
],
"repository": {
"type": "git",
"url": "https://github.com/ipld/js-unixfs.git"
},
"homepage": "https://github.com/ipld/js-unixfs",
"scripts": {
"prepare:proto": "pbjs -t static-module -w es6 -r unixfs --force-number --no-verify --no-delimited --no-create --no-beautify --no-defaults --lint eslint-disable -o gen/unixfs.js ./unixfs.proto",
"prepare:proto-types": "pbts -o gen/unixfs.ts gen/unixfs.js",
"gen": "node ./scripts/gen.js",
"gen:matrix": "node ./scripts/matrix.js",
"gen:types": "tsc --build",
"prepare": "tsc --build",
"test:web": "playwright-test test/**/*.spec.js --cov && nyc report",
"test:node": "c8 --check-coverage --branches 95 --functions 83 --lines 94 mocha test/**/*.spec.js",
"test": "npm run test:node",
"coverage": "c8 --reporter=html mocha test/**/*.spec.js && npm_config_yes=true npx st -d coverage -p 8080",
"typecheck": "tsc --build",
"test:convergence": "mocha test/convergence.js"
},
"dependencies": {
"@ipld/dag-pb": "^4.0.0",
"@multiformats/murmur3": "^2.1.3",
"@perma/map": "^1.0.2",
"actor": "^2.3.1",
"multiformats": "^13.0.1",
"protobufjs": "^7.1.2",
"rabin-rs": "^2.1.0"
},
"type": "module",
"types": "./dist/src/lib.d.ts",
"typesVersions": {
"*": {
"*": [
"dist/*"
],
"dist/src/lib.d.ts": [
"dist/src/lib.d.ts"
],
"file": [
"dist/src/file.d.ts"
],
"directory": [
"dist/src/directory.d.ts"
],
"file/layout/trickle": [
"dist/src/file/layout/trickle.d.ts"
],
"file/layout/balanced": [
"dist/src/file/layout/balanced.d.ts"
],
"file/layout/queue": [
"dist/src/file/layout/queue.d.ts"
],
"file/chunker/fixed": [
"dist/src/file/chunker/fixed.d.ts"
],
"file/chunker/rabin": [
"dist/src/file/chunker/rabin.d.ts"
],
"file/chunker/buffer": [
"dist/src/file/chunker/buffer.d.ts"
]
}
},
"exports": {
".": {
"types": "./dist/src/lib.d.ts",
"import": "./src/lib.js"
},
"./file": {
"types": "./dist/src/file.d.ts",
"import": "./src/file.js"
},
"./directory": {
"types": "./dist/src/directory.d.ts",
"import": "./src/directory.js"
},
"./file/layout/trickle": {
"types": "./dist/src/file/layout/trickle.d.ts",
"import": "./src/file/layout/trickle.js"
},
"./file/layout/balanced": {
"types": "./dist/src/file/layout/balanced.d.ts",
"import": "./src/file/layout/balanced.js"
},
"./file/layout/queue": {
"types": "./dist/src/file/layout/queue.d.ts",
"import": "./src/file/layout/queue.js"
},
"./file/chunker/fixed": {
"types": "./dist/src/file/chunker/fixed.d.ts",
"import": "./src/file/chunker/fixed.js"
},
"./file/chunker/rabin": {
"types": "./dist/src/file/chunker/rabin.d.ts",
"import": "./src/file/chunker/rabin.js"
},
"./file/chunker/buffer": {
"types": "./dist/src/file/chunker/buffer.d.ts",
"import": "./src/file/chunker/buffer.js"
}
},
"c8": {
"exclude": [
"gen/**",
"test/**",
"dist/**"
]
},
"devDependencies": {
"@ipld/car": "^5.0.3",
"@types/chai": "^4.3.3",
"@types/mocha": "^10.0.0",
"@types/tsv": "^0.2.1",
"c8": "^7.12.0",
"chai": "^4.3.6",
"fzstd": "^0.0.4",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"playwright-test": "^8.1.1",
"tsv": "^0.2.0",
"typescript": "^4.8.4"
},
"license": "Apache-2.0 OR MIT"
}