-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 2.51 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
{
"name": "fr32-sha2-256-trunc254-padded-binary-tree-multihash",
"version": "3.3.0",
"description": "Fil Piece multihash",
"keywords": [
"piece",
"filecoin",
"multihash",
"multiformats"
],
"type": "module",
"main": "./src/lib.js",
"scripts": {
"gen": "node scripts/build.js",
"check": "tsc --build",
"build": "tsc --build",
"prepublishOnly": "tsc --build",
"test:web": "playwright-test test/**/*.spec.js --runner entail --cov && nyc report",
"test:node": "c8 --check-coverage --branches 100 --functions 100 --lines 100 entail test/**/*.spec.js",
"test:miniflare": "entail test/**/*.miniflare.js",
"test": "c8 --check-coverage --branches 0 --functions 0 --lines 0 entail test/**/*.spec.js",
"coverage": "c8 report -r html && open coverage/index.html"
},
"files": [
"src",
"gen",
"dist/src",
"dist/gen",
"dist/test"
],
"exports": {
".": {
"types": "./dist/src/lib.js",
"import": "./src/lib.js"
},
"./async": {
"types": "./dist/src/async.js",
"import": "./src/async.js"
},
"./async-wasm-import": {
"types": "./dist/src/async-wasm-import.js",
"import": "./src/async-wasm-import.js"
},
"./wasm-import": {
"types": "./dist/src/wasm-import.js",
"import": "./src/wasm-import.js"
},
"./package.json": "./package.json"
},
"types": "./dist/src/lib.d.ts",
"typesVersions": {
"*": {
".": [
"dist/src/lib.d.ts"
],
"async": [
"dist/src/async.d.ts"
],
"async-wasm-import": [
"dist/src/async-wasm-import.d.ts"
],
"wasm-import": [
"dist/src/wasm-import.d.ts"
]
}
},
"c8": {
"exclude": [
"gen/**",
"test/**"
]
},
"devDependencies": {
"@types/node": "^20.11.10",
"c8": "7.13.0",
"chai": "4.3.7",
"entail": "^2.1.1",
"mocha": "10.2.0",
"multiformats": "^11.0.2",
"miniflare": "^3.20231218.4",
"nyc": "^15.1.0",
"playwright-test": "^12.3.0",
"typescript": "^5.2.2"
},
"nyc": {
"exclude": [
"gen/**"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/web3-storage/fr32-sha2-256-trunc254-padded-binary-tree-multihash.git"
},
"author": "",
"license": "Apache-2.0 OR MIT",
"bugs": {
"url": "https://github.com/web3-storage/fr32-sha2-256-trunc254-padded-binary-tree-multihash/issues"
},
"homepage": "https://github.com/web3-storage/fr32-sha2-256-trunc254-padded-binary-tree-multihash#readme"
}