forked from orbitdb-archive/ipfs-log
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 2.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
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
{
"name": "ipfs-log",
"version": "4.5.4",
"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": ">=8.0.0"
},
"keywords": [
"ipfs",
"log",
"crdts",
"crdt"
],
"dependencies": {
"json-stringify-deterministic": "^1.0.1",
"multihashing-async": "^0.7.0",
"orbit-db-identity-provider": "~0.3.0",
"orbit-db-io": "~0.2.0",
"p-do-whilst": "^1.1.0",
"p-each-series": "^2.1.0",
"p-map": "^1.1.1",
"p-whilst": "^1.0.0"
},
"devDependencies": {
"@babel/cli": "~7.2.3",
"@babel/core": "~7.2.2",
"@babel/plugin-syntax-object-rest-spread": "~7.2.0",
"@babel/plugin-transform-modules-commonjs": "~7.2.0",
"@babel/plugin-transform-runtime": "~7.2.0",
"@babel/preset-env": "~7.2.0",
"@babel/runtime": "~7.2.0",
"@orbitdb/eslint-config-orbitdb": "0.0.2",
"babel-loader": "~8.0.4",
"datastore-level": "~0.12.0",
"fs-extra": "^7.0.1",
"http-server": "^0.11.1",
"ipfs": "^0.40.0",
"ipfs-repo": "^0.30.1",
"ipld-dag-pb": "~0.18.0",
"istanbul": "~0.4.5",
"json-loader": "~0.5.7",
"mocha": "~5.2.0",
"mocha-headless-chrome": "^2.0.1",
"orbit-db-storage-adapter": "^0.4.2",
"orbit-db-test-utils": "~0.8.4",
"rimraf": "~2.6.1",
"standard": "~12.0.1",
"webpack": "~4.28.0",
"webpack-cli": "~3.1.2",
"yargs": "^13.2.4"
},
"standard": {
"env": "mocha",
"ignore": "lib/es5/**/*.js"
},
"contributors": [
"haadcode",
"aphelionz",
"shamb0t",
"thiagodelgado111",
"mistakia",
"satazor",
"RichardLitt",
"greenkeeperio-bot",
"chrisdostert",
"zachferland",
"kaibakker",
"dignifiedquire",
"adam-palazzo"
],
"scripts": {
"test": "TEST=all mocha",
"test:coverage": "istanbul cover -x src/g-set.js _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:tests": "webpack --config webpack.tests.config.js --mode production",
"build:examples": "webpack --config webpack.example.config.js --sort-modules-by size --mode production",
"build:dist": "webpack --config webpack.config.js --display-modules --sort-modules-by size --mode production",
"build:es5": "babel src --out-dir ./lib/es5/ --presets @babel/preset-env --plugins @babel/plugin-transform-runtime",
"lint": "standard",
"benchmark": "node --expose-gc benchmarks/runner/index.js -r --grep baseline",
"benchmark:stress": "node --expose-gc benchmarks/runner/index.js -r --grep stress",
"examples": "http-server examples/browser"
},
"localMaintainers": [
"haad <haad@haja.io>",
"hajamark <mark@haja.io>",
"shamb0t <shams@haja.io>"
]
}