This repository has been archived by the owner on Sep 30, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
81 lines (81 loc) · 2.27 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
{
"name": "orbit-db-store",
"version": "5.0.0",
"description": "Base class for orbit-db data stores",
"type": "module",
"main": "./src/Store.js",
"exports": "./src/Store.js",
"scripts": {
"test": "npm run test:node && npm run test:browser",
"test:node": "TEST=go mocha; TEST=js nyc mocha",
"test:browser": "npm run build:tests && mocha-headless-chrome -f ./test/browser/index.html -a no-sandbox",
"build": "npm run build:dist",
"build:dist": "webpack --config ./conf/webpack.config.js --mode production",
"build:docs": "markdown-toc --no-first1 -i README.md",
"build:tests": "webpack --config ./conf/webpack.tests.config.js --mode development",
"lint": "standard --env=mocha",
"lint:fix": "standard --env=mocha --fix"
},
"repository": {
"type": "git",
"url": "https://github.com/orbitdb/orbit-db-store"
},
"engines": {
"node": ">=14.0.0"
},
"author": "Haad",
"license": "MIT",
"dependencies": {
"ipfs-log": "^6.0.0",
"it-to-stream": "^1.0.0",
"logplease": "^1.2.15",
"p-each-series": "^3.0.0",
"p-map": "^5.5.0",
"p-queue": "^7.3.0",
"readable-stream": "~4.3.0"
},
"standard": {
"env": [
"mocha"
]
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@babel/runtime": "^7.20.7",
"assert": "^2.0.0",
"babel-loader": "^9.1.2",
"browserify-fs": "^1.0.0",
"eslint": "^8.32.0",
"go-ipfs": "^0.17.0",
"ipfs": "^0.66.0",
"ipfsd-ctl": "^13.0.0",
"json-loader": "~0.5.7",
"markdown-toc": "^1.2.0",
"mocha": "^10.2.0",
"mocha-headless-chrome": "^4.0.0",
"node-polyfill-webpack-plugin": "^2.0.1",
"node-pre-gyp": "^0.13.0",
"nyc": "^15.1.0",
"orbit-db-cache": "^0.5.0",
"orbit-db-identity-provider": "^0.5.0",
"orbit-db-keystore": "^2.0.0",
"orbit-db-storage-adapter": "^0.9.0",
"orbit-db-test-utils": "^3.0.0",
"path-browserify": "^1.0.1",
"process": "^0.11.10",
"rimraf": "^4.1.0",
"standard": "^17.0.0",
"stream-browserify": "^3.0.0",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"localMaintainers": [
"haad <[email protected]>",
"shamb0t <[email protected]>",
"hajamark <[email protected]>"
],
"peerDependencies": {
"orbit-db-io": "*"
}
}