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 14
/
Copy pathpackage.json
78 lines (78 loc) · 2.04 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
{
"name": "orbit-db-keystore",
"version": "2.0.0",
"description": "A local key manager for OrbitDB",
"type": "module",
"main": "src/keystore.js",
"keywords": [
"orbitdb",
"orbit-db",
"keystore",
"kv-store"
],
"repository": {
"type": "git",
"url": "https://github.com/orbitdb/orbit-db-keystore.git"
},
"scripts": {
"test": "npm run test:node && npm run test:browser",
"test:node": "cross-env 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",
"lint:fix": "standard --fix"
},
"author": "Haad",
"license": "MIT",
"dependencies": {
"@libp2p/crypto": "^1.0.11",
"elliptic": "^6.5.4",
"level": "^8.0.0",
"lru": "^3.1.0",
"mkdirp": "^2.1.1",
"safe-buffer": "^5.2.1",
"secp256k1": "^5.0.0"
},
"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",
"cross-env": "^7.0.3",
"fs-extra": "^11.1.0",
"graceful-fs": "^4.2.10",
"is-node": "^1.0.2",
"json-loader": "~0.5.7",
"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"
},
"bugs": "https://github.com/orbitdb/orbit-db-keystore/issues",
"homepage": "https://github.com/orbitdb/orbit-db-keystore",
"contributors": [
"adam-palazzo",
"haadcode",
"RichardLitt",
"shamb0t",
"thiagodelgado111",
"willemneal"
],
"standard": {
"env": [
"mocha"
]
},
"localMaintainers": [
"haad <[email protected]>",
"shamb0t <[email protected]>",
"hajamark <[email protected]>"
]
}