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 55
/
package.json
107 lines (107 loc) · 3.07 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "ipfs-log",
"version": "6.0.0",
"type": "module",
"description": "Append-only log CRDT on IPFS",
"main": "src/log.js",
"author": "Haad",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/orbitdb/ipfs-log"
},
"engines": {
"node": ">=14.0.0"
},
"keywords": [
"ipfs",
"log",
"crdts",
"crdt"
],
"dependencies": {
"json-stringify-deterministic": "^1.0.8",
"orbit-db-identity-provider": "^0.5.0",
"orbit-db-io": "^3.0.0",
"p-do-whilst": "^2.0.0",
"p-each-series": "^3.0.0",
"p-map": "^5.5.0",
"p-whilst": "^3.0.0"
},
"devDependencies": {
"@babel/cli": "^7.20.7",
"@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",
"@mapbox/node-pre-gyp": "^1.0.10",
"assert": "^2.0.0",
"babel-loader": "~9.1.2",
"c8": "^7.12.0",
"eslint": "^8.32.0",
"fs-extra": "^11.1.0",
"http-server": "^14.1.1",
"is-node": "^1.0.2",
"jsdoc": "^4.0.0",
"json-loader": "~0.5.7",
"level": "^8.0.0",
"mocha": "^10.2.0",
"mocha-headless-chrome": "^4.0.0",
"node-polyfill-webpack-plugin": "^2.0.1",
"orbit-db-benchmark-runner": "^2.0.1",
"orbit-db-keystore": "^2.0.0",
"orbit-db-storage-adapter": "^0.9.0",
"orbit-db-test-utils": "^3.0.0",
"path-browserify": "^1.0.1",
"process": "^0.11.10",
"rimraf": "^4.1.0",
"standard": "~17.0.0",
"stream-browserify": "^3.0.0",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"standard": {
"env": "mocha",
"ignore": [
"lib/es5/",
"docs/"
]
},
"contributors": [
"haadcode",
"aphelionz",
"shamb0t",
"thiagodelgado111",
"mistakia",
"satazor",
"RichardLitt",
"greenkeeperio-bot",
"chrisdostert",
"zachferland",
"kaibakker",
"dignifiedquire",
"adam-palazzo"
],
"scripts": {
"test": "TEST=all c8 mocha",
"test:browser": "npm run build:tests && mocha-headless-chrome -t 360000 -f ./test/browser/index.html -a no-sandbox",
"build": "npm run build:es5 && npm run build:examples && npm run build:dist",
"build:docs": "jsdoc src/ -d docs --readme README.md",
"build:tests": "webpack --config ./conf/webpack.tests.config.js --mode production",
"build:examples": "webpack --config ./conf/webpack.example.config.js",
"build:dist": "webpack --config ./conf/webpack.config.js --mode production",
"build:es5": "babel src --out-dir ./lib/es5/ --presets @babel/preset-env --plugins @babel/plugin-transform-runtime",
"lint": "standard --env=mocha",
"lint:fix": "standard --env=mocha --fix",
"benchmark": "nyc benchmark-runner -r -b --baselineLimit 1000",
"benchmark:stress": "benchmark-runner -r --grep stress",
"examples": "http-server examples/browser"
},
"localMaintainers": [
"haad <[email protected]>",
"hajamark <[email protected]>",
"shamb0t <[email protected]>"
]
}