2015-12-26 19:05:51 +02:00
|
|
|
{
|
2016-02-03 14:22:58 +07:00
|
|
|
"name": "orbit-db",
|
2017-01-29 19:23:04 +02:00
|
|
|
"version": "0.16.3",
|
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",
|
|
|
|
"url": "https://github.com/haadcode/orbit-db"
|
|
|
|
},
|
2016-02-03 14:22:58 +07:00
|
|
|
"engines": {
|
2016-09-12 16:19:53 +02:00
|
|
|
"node": "^6.x.x"
|
2016-01-20 16:05:47 +08:00
|
|
|
},
|
2016-10-28 13:20:08 +03:00
|
|
|
"browser": {
|
2016-10-28 11:41:57 +02:00
|
|
|
"fs-pull-blob-store": "idb-pull-blob-store"
|
2016-10-28 13:20:08 +03:00
|
|
|
},
|
2016-04-27 08:48:12 +02:00
|
|
|
"main": "src/OrbitDB.js",
|
2015-12-26 19:05:51 +02:00
|
|
|
"dependencies": {
|
2016-10-28 12:01:29 +02:00
|
|
|
"fs-pull-blob-store": "^0.4.1",
|
2016-10-28 11:41:57 +02:00
|
|
|
"idb-pull-blob-store": "^0.5.1",
|
2016-10-28 12:30:46 +02:00
|
|
|
"lock": "^0.1.3",
|
2017-01-17 10:03:36 +01:00
|
|
|
"logplease": "^1.2.12",
|
2016-12-13 13:19:25 +01:00
|
|
|
"orbit-db-counterstore": "^0.1.8",
|
2017-01-17 10:03:36 +01:00
|
|
|
"orbit-db-docstore": "^0.0.9",
|
|
|
|
"orbit-db-eventstore": "^0.1.9",
|
|
|
|
"orbit-db-feedstore": "^0.1.8",
|
|
|
|
"orbit-db-kvstore": "^0.1.7",
|
|
|
|
"orbit-db-pubsub": "^0.1.6",
|
2016-10-28 11:41:57 +02:00
|
|
|
"pull-stream": "^3.4.5"
|
2015-12-26 19:05:51 +02:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2016-07-04 02:42:32 +02:00
|
|
|
"asyncawait": "^1.0.6",
|
2017-01-17 10:03:36 +01:00
|
|
|
"babel-core": "^6.21.0",
|
|
|
|
"babel-loader": "^6.2.9",
|
2016-10-28 12:01:29 +02:00
|
|
|
"babel-plugin-transform-runtime": "^6.15.0",
|
2017-01-17 10:03:36 +01:00
|
|
|
"babel-polyfill": "^6.20.0",
|
2016-10-28 12:01:29 +02:00
|
|
|
"babel-preset-es2015": "^6.18.0",
|
2016-10-04 18:40:22 +02:00
|
|
|
"bluebird": "^3.4.6",
|
2017-01-16 23:23:11 +01:00
|
|
|
"ipfs-daemon": "^0.3.0-beta.16",
|
2016-05-08 18:18:59 +02:00
|
|
|
"json-loader": "^0.5.4",
|
2017-01-17 10:03:36 +01:00
|
|
|
"lodash": "^4.17.4",
|
2016-10-28 12:01:29 +02:00
|
|
|
"mocha": "^3.1.2",
|
2016-12-30 12:17:12 +01:00
|
|
|
"rimraf": "^2.5.4",
|
2017-01-17 10:03:36 +01:00
|
|
|
"stream-http": "^2.6.2",
|
2016-12-13 13:19:25 +01:00
|
|
|
"webpack": "^2.1.0-beta.28"
|
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",
|
2016-10-04 18:40:22 +02:00
|
|
|
"examples:browser": "open examples/browser/index.html && LOG=debug node examples/start-daemon.js",
|
2016-03-06 17:00:01 +01:00
|
|
|
"test": "mocha",
|
2016-07-31 11:10:39 +02:00
|
|
|
"build": "npm run build:dist && npm run build:minified && npm run build:examples",
|
2016-12-13 13:19:25 +01:00
|
|
|
"build:dist": "webpack --config conf/webpack.config.js",
|
|
|
|
"build:minified": "webpack --config conf/webpack.config.minified.js",
|
|
|
|
"build:examples": "webpack --config conf/webpack.example.config.js",
|
|
|
|
"stats": "webpack --json > stats.json"
|
2015-12-26 19:05:51 +02:00
|
|
|
}
|
|
|
|
}
|