forked from orbitdb-archive/orbit-db-store
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.02 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.02 KB
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
{
"name": "orbit-db-store",
"version": "4.0.1",
"description": "Base class for orbit-db data stores",
"main": "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 --display-modules --sort-modules-by size --mode production",
"build:docs": "markdown-toc --no-first1 -i README.md",
"build:tests": "webpack --config ./conf/webpack.tests.config.js --mode production",
"lint": "standard"
},
"repository": {
"type": "git",
"url": "https://github.com/orbitdb/orbit-db-store"
},
"engines": {
"node": ">=12.0.0"
},
"author": "Haad",
"license": "MIT",
"dependencies": {
"ipfs-log": "~5.0.0",
"it-to-stream": "^0.1.2",
"logplease": "^1.2.14",
"orbit-db-io": "~0.3.0",
"p-each-series": "^2.1.0",
"p-map": "^4.0.0",
"p-queue": "^6.6.1",
"readable-stream": "~3.6.0"
},
"standard": {
"env": [
"mocha"
]
},
"devDependencies": {
"@babel/core": "^7.11.4",
"@babel/plugin-syntax-object-rest-spread": "^7.2.0",
"@babel/plugin-transform-modules-commonjs": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.11.0",
"@babel/preset-env": "^7.11.0",
"@babel/runtime": "^7.11.2",
"babel-loader": "~8.1.0",
"json-loader": "~0.5.7",
"markdown-toc": "^1.2.0",
"mocha": "^8.1.1",
"mocha-headless-chrome": "^3.1.0",
"nyc": "^15.1.0",
"orbit-db-cache": "~0.3.0",
"orbit-db-identity-provider": "~0.3.1",
"orbit-db-keystore": "~0.3.5",
"orbit-db-storage-adapter": "^0.5.3",
"orbit-db-test-utils": "^0.11.1",
"rimraf": "^3.0.0",
"standard": "^14.0.2",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12"
},
"localMaintainers": [
"haad <haad@haja.io>",
"shamb0t <shams@haja.io>",
"hajamark <mark@haja.io>"
]
}