This repository has been archived by the owner on Jun 2, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
55 lines (55 loc) · 1.54 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
{
"name": "@ipld/block",
"version": "0.0.0-dev",
"main": "index.js",
"type": "module",
"directories": {
"test": "test"
},
"scripts": {
"lint": "standard",
"build": "npm_config_yes=true npx ipjs@latest build --tests",
"publish": "npm_config_yes=true npx ipjs@latest publish",
"test:cjs": "npm run build && mocha dist/cjs/node-test/test-*.js",
"test:node": "hundreds mocha test/test-*.js",
"test:browser": "polendina --cleanup dist/cjs/node-test/test-*.js",
"test": "npm run lint && npm run test:node && npm run test:cjs && npm run test:browser",
"coverage": "c8 --reporter=html mocha test/test-*.js && npx st -d coverage -p 8080"
},
"keywords": [],
"author": "Mikeal Rogers <mikeal.rogers@gmail.com> (https://www.mikealrogers.com/)",
"license": "(Apache-2.0 AND MIT)",
"devDependencies": {
"@ipld/dag-json": "^3.0.17",
"hundreds": "0.0.8",
"mocha": "^8.1.3",
"polendina": "1.1.0",
"standard": "^14.3.4"
},
"dependencies": {
"@ipld/dag-cbor": "1.1.11",
"class-is": "^1.1.0",
"lodash.transform": "^4.6.0",
"multiformats": "^3.0.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ipld/js-block.git"
},
"bugs": {
"url": "https://github.com/ipld/js-block/issues"
},
"exports": {
".": {
"import": "./index.js"
},
"./basics": {
"import": "./basics.js"
},
"./defaults": {
"import": "./defaults.js"
}
},
"homepage": "https://github.com/ipld/js-block#readme",
"description": "IPLD Block interface"
}