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 3
/
package.json
61 lines (61 loc) · 1.73 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
{
"name": "orbit-db-storage-adapter",
"version": "0.9.0",
"description": "OrbitDB adapter for any abstract-leveldown compliant storage",
"main": "./src/index.js",
"type": "module",
"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": "webpack --config ./conf/webpack.config.js",
"build:tests": "webpack --config ./conf/webpack.tests.config.js",
"lint": "standard",
"lint:fix": "standard --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/orbitdb/orbit-db-storage-adapter.git"
},
"keywords": [
"leveldown",
"levelup",
"orbitdb"
],
"author": "hajamark <mark@haja.io>",
"localMaintainers": [
"hajamark <mark@haja.io>",
"shamb0t <shamb0t@haja.io>"
],
"standard": {
"env": [
"mocha"
]
},
"license": "MIT",
"bugs": {
"url": "https://github.com/orbitdb/orbit-db-storage-adapter/issues"
},
"homepage": "https://github.com/orbitdb/orbit-db-storage-adapter#readme",
"dependencies": {
"level": "^8.0.0",
"mkdirp": "^2.1.1"
},
"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",
"buffer": "^6.0.3",
"mocha": "^10.2.0",
"mocha-headless-chrome": "^4.0.0",
"process": "^0.11.10",
"standard": "^17.0.0",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
}
}