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 17
/
Copy pathpackage.json
70 lines (70 loc) · 2.08 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-identity-provider",
"version": "0.1.5",
"description": "Default identity provider for OrbitDB",
"main": "index.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",
"lint": "standard",
"build": "npm run build:dist",
"build:dist": "webpack --config ./conf/webpack.config.js --display-modules --sort-modules-by size --mode=production",
"build:tests": "webpack --config ./conf/webpack.tests.config.js --mode development"
},
"repository": {
"type": "git",
"url": "git+https://github.com/orbitdb/orbit-db-identity-provider.git"
},
"keywords": [
"orbitdb",
"orbit-db",
"identity"
],
"author": "shamb0t",
"contributors": [
"shamb0t",
"haadcode",
"RichardLitt",
"latenssi",
"adam-palazzo"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/orbitdb/orbit-db-identity-provider/issues"
},
"homepage": "https://github.com/orbitdb/orbit-db-identity-provider#readme",
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-syntax-object-rest-spread": "^7.2.0",
"@babel/plugin-transform-modules-commonjs": "^7.5.0",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/runtime": "^7.5.5",
"fs-extra": "^7.0.1",
"json-loader": "^0.5.7",
"localstorage-level-migration": "github:orbitdb/localstorage-level-migration#fix/level-update",
"mocha": "^5.2.0",
"mocha-headless-chrome": "^2.0.3",
"orbit-db-storage-adapter": "^0.4.1",
"orbit-db-test-utils": "^0.4.0",
"rimraf": "^2.6.2",
"standard": "^13.0.2",
"webpack": "^4.29.1",
"webpack-cli": "^3.2.2"
},
"standard": {
"env": [
"mocha"
]
},
"dependencies": {
"ethers": "^4.0.20",
"orbit-db-keystore": "orbitdb/orbit-db-keystore#browser-example-scaffolding"
},
"localMaintainers": [
"haad <haad@haja.io>",
"shamb0t <shams@haja.io>",
"hajamark <mark@haja.io>"
]
}