2015-12-26 19:05:51 +02:00
|
|
|
{
|
2016-02-03 14:22:58 +07:00
|
|
|
"name": "orbit-db",
|
2018-03-17 12:54:10 +02:00
|
|
|
"version": "0.19.7",
|
2016-05-07 11:58:38 +02:00
|
|
|
"description": "Distributed p2p database on IPFS",
|
2015-12-26 19:05:51 +02:00
|
|
|
"author": "Haad",
|
2016-01-20 16:05:47 +08:00
|
|
|
"license": "MIT",
|
2016-03-03 15:37:54 +01:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2017-03-31 10:54:56 +02:00
|
|
|
"url": "https://github.com/orbitdb/orbit-db"
|
2016-03-03 15:37:54 +01:00
|
|
|
},
|
2016-02-03 14:22:58 +07:00
|
|
|
"engines": {
|
2017-03-31 10:54:56 +02:00
|
|
|
"node": ">=8.0.0"
|
2016-01-20 16:05:47 +08:00
|
|
|
},
|
2016-04-27 08:48:12 +02:00
|
|
|
"main": "src/OrbitDB.js",
|
2015-12-26 19:05:51 +02:00
|
|
|
"dependencies": {
|
2018-04-14 08:10:35 +02:00
|
|
|
"ipfs-pubsub-1on1": "~0.0.4",
|
2017-03-31 10:54:56 +02:00
|
|
|
"logplease": "^1.2.14",
|
|
|
|
"multihashes": "^0.4.12",
|
2018-02-01 07:04:38 +01:00
|
|
|
"orbit-db-cache": "~0.2.2",
|
2018-03-30 12:38:55 +02:00
|
|
|
"orbit-db-counterstore": "~1.4.0",
|
2018-03-31 14:15:29 +02:00
|
|
|
"orbit-db-docstore": "~1.4.0",
|
|
|
|
"orbit-db-eventstore": "~1.4.0",
|
|
|
|
"orbit-db-feedstore": "~1.4.0",
|
2017-12-13 14:48:34 +01:00
|
|
|
"orbit-db-keystore": "~0.1.0",
|
2018-03-31 14:15:29 +02:00
|
|
|
"orbit-db-kvstore": "~1.4.0",
|
2018-03-30 12:38:55 +02:00
|
|
|
"orbit-db-store": "~2.5.0",
|
2018-03-31 14:15:29 +02:00
|
|
|
"orbit-db-pubsub": "~0.5.3"
|
2015-12-26 19:05:51 +02:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2017-03-31 10:54:56 +02:00
|
|
|
"babel-core": "^6.26.0",
|
|
|
|
"babel-loader": "^7.1.2",
|
|
|
|
"babel-plugin-transform-runtime": "^6.23.0",
|
|
|
|
"babel-polyfill": "^6.26.0",
|
|
|
|
"babel-preset-es2015": "^6.24.1",
|
|
|
|
"datastore-level": "~0.7.0",
|
2018-03-30 21:31:51 +02:00
|
|
|
"go-ipfs-dep": "0.4.13",
|
2017-12-11 19:48:20 +01:00
|
|
|
"ipfs": "~0.28.2",
|
|
|
|
"ipfs-repo": "~0.18.7",
|
|
|
|
"ipfsd-ctl": "~0.30.3",
|
2017-03-31 10:54:56 +02:00
|
|
|
"mocha": "^4.0.1",
|
2017-01-30 11:10:24 +02:00
|
|
|
"p-each-series": "^1.0.0",
|
2017-03-31 10:54:56 +02:00
|
|
|
"p-map-series": "^1.0.0",
|
|
|
|
"rimraf": "^2.6.2",
|
2017-12-13 14:48:34 +01:00
|
|
|
"uglifyjs-webpack-plugin": "^1.1.4",
|
2017-03-31 10:54:56 +02:00
|
|
|
"webpack": "^3.8.1"
|
2016-01-20 16:05:47 +08:00
|
|
|
},
|
|
|
|
"scripts": {
|
2016-10-05 10:33:45 +02:00
|
|
|
"examples": "npm run examples:node",
|
|
|
|
"examples:node": "node examples/eventlog.js",
|
2017-03-31 10:54:56 +02:00
|
|
|
"examples:browser": "open examples/browser/browser.html",
|
2017-12-11 19:48:20 +01:00
|
|
|
"test": "TEST=all mocha",
|
2017-12-31 09:48:10 +02:00
|
|
|
"build": "npm run build:es5 && npm run build:debug && npm run build:dist && npm run build:examples",
|
2017-12-31 17:25:22 +02:00
|
|
|
"build:examples": "webpack --config conf/webpack.example.config.js --sort-modules-by size && mkdir -p examples/browser/lib && cp node_modules/ipfs/dist/index.js examples/browser/lib/ipfs.js",
|
2017-12-23 10:50:40 +01:00
|
|
|
"build:dist": "webpack --config conf/webpack.config.js --sort-modules-by size && mkdir -p examples/browser/lib && cp dist/orbitdb.min.js examples/browser/lib/orbitdb.min.js",
|
2017-12-31 09:55:35 +02:00
|
|
|
"build:debug": "webpack --config conf/webpack.debug.config.js --sort-modules-by size && mkdir -p examples/browser/lib && cp dist/orbitdb.js examples/browser/lib/orbitdb.js && cp dist/orbitdb.js.map examples/browser/lib/orbitdb.js.map",
|
2017-11-28 14:25:27 +01:00
|
|
|
"build:es5": "babel src --out-dir ./dist/es5/ --presets babel-preset-es2015 --plugins babel-plugin-transform-runtime"
|
2015-12-26 19:05:51 +02:00
|
|
|
}
|
|
|
|
}
|