-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
90 lines (90 loc) · 2.62 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
{
"name": "dagdb",
"version": "0.0.0-dev",
"description": "Syncable large scale database built on IPLD",
"main": "src/index.js",
"type": "module",
"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/browser-test/test-*.js",
"test": "npm run lint && npm run test:node && npm run test:cjs && npm run test:browser",
"test:node-v12": "npm run lint && mocha test/test-*.js && npm run test:cjs && npm run test:browser",
"coverage": "c8 --reporter=html mocha test/test-*.js && npx st -d coverage -p 8080",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"build:schema": "echo 'export default ' > src/schema.js && ipld-schema to-json Schema.md >> src/schema.js && standard --fix src/schema.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mikeal/dagdb.git"
},
"keywords": [
"database",
"dag",
"decentralized"
],
"author": "Mikeal Rogers <mikeal.rogers@gmail.com> (https://www.mikealrogers.com/)",
"license": "(Apache-2.0 AND MIT)",
"bugs": {
"url": "https://github.com/mikeal/dagdb/issues"
},
"c8": {
"exclude": [
"src/updaters/commit.js",
"src/updaters/file.js",
"src/stores/lfs.js",
"src/bare.js",
"test*"
]
},
"homepage": "https://github.com/mikeal/dagdb#readme",
"exports": {
".": {
"import": "./src/index.js",
"browser": "./src/browser.js"
},
"./server": {
"import": "./src/http/nodejs.js"
},
"./database": {
"import": "./src/database.js"
},
"./lru": {
"import": "./src/stores/lru.js"
}
},
"dependencies": {
"@ipld/block": "^6.0.4",
"@ipld/fbl": "2.0.1",
"@ipld/schema-validation": "1.1.0",
"bent": "^7.3.10",
"charwise": "^3.0.1",
"datastore-car": "^1.2.0",
"encoding-down": "^6.3.0",
"git-remote-origin-url": "^3.1.0",
"iamap": "mikeal/iamap#uint8array",
"level-js": "^5.0.2",
"levelup": "^4.4.0",
"lfs-store": "^0.0.8",
"lru-cache": "^6.0.0",
"murmurhash3js-revisited": "^3.0.0"
},
"devDependencies": {
"aws-config": "^1.4.0",
"aws-sdk": "^2.751.0",
"c8": "^7.3.0",
"hundreds": "0.0.8",
"ipld-schema": "^0.3.2",
"memdown": "^5.1.0",
"mocha": "^8.1.3",
"polendina": "^1.1.0",
"standard": "^14.3.4",
"tap": "^14.10.8",
"tempy": "^0.7.0",
"vuepress": "^1.5.4"
}
}