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 16
/
package.json
70 lines (70 loc) · 1.91 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
{
"name": "orbit-db-cache",
"version": "0.5.0",
"description": "Local cache for orbit-db",
"type": "module",
"keywords": [
"orbit",
"orbitdb",
"cache"
],
"repository": {
"type": "git",
"url": "https://github.com/orbitdb/orbit-db-cache.git"
},
"homepage": "https://github.com/orbitdb/orbit-db-cache",
"bugs": "https://github.com/orbitdb/orbit-db-cache/issues",
"main": "src/Cache.js",
"scripts": {
"test": "npm run test:node && npm run test:browser",
"test:node": "TEST=all 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:tests": "webpack --config ./conf/webpack.tests.config.js --mode production",
"lint": "standard --env=mocha",
"lint:fix": "standard --fix"
},
"author": "Haad",
"contributors": [
"adam-palazzo",
"mistakia",
"RichardLitt",
"thiagodelgado111",
"CSDUMMI"
],
"standard": {
"env": [
"mocha"
]
},
"license": "MIT",
"dependencies": {
"logplease": "~1.2.15"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/plugin-syntax-object-rest-spread": "^7.8.3",
"@babel/plugin-transform-modules-commonjs": "^7.20.11",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.20.2",
"@babel/runtime": "^7.20.7",
"assert": "^2.0.0",
"babel-loader": "^9.1.2",
"level": "^8.0.0",
"memory-level": "^1.0.0",
"mocha": "^10.2.0",
"mocha-headless-chrome": "^4.0.0",
"orbit-db-storage-adapter": "^0.9.0",
"path-browserify": "^1.0.1",
"process": "^0.11.10",
"standard": "^17.0.0",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"localMaintainers": [
"haad <[email protected]>",
"shamb0t <[email protected]>",
"hajamark <[email protected]>"
]
}