-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.2 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
{
"name": "@web3-storage/car-block-validator",
"version": "1.2.1",
"description": "Validate car block bytes",
"main": "src/index.js",
"types": "./types/index.d.ts",
"type": "module",
"scripts": {
"build": "npm run build:js && npm run build:types",
"build:js": "ipjs build --main && npm run build:copy",
"build:copy": "cp -a tsconfig.json src test dist/ ",
"build:types": "npm run build:copy && cd dist && tsc --build",
"test": "ava --verbose --serial 'test/*.spec.js' --timeout 30s",
"lint": "standard"
},
"repository": {
"type": "git",
"url": "git+https://github.com/web3-storage/car-block-validator.git"
},
"standard": {
"ignore": [
"dist"
]
},
"keywords": [
"ipld",
"block"
],
"dependencies": {
"@multiformats/blake2": "^2.0.2",
"@multiformats/murmur3": "^2.1.8",
"@multiformats/sha3": "^2.0.15",
"multiformats": "^13.3.1",
"uint8arrays": "^5.1.0"
},
"devDependencies": {
"@ipld/car": "^5.1.0",
"@ipld/dag-pb": "^4.0.2",
"ava": "^4.1.0",
"ipjs": "^5.0.3",
"standard": "^16.0.3",
"typescript": "^4.3.5"
},
"author": "Vasco Santos <santos.vasco10@gmail.com>",
"license": "Apache-2.0 OR MIT"
}