2015-12-26 19:05:51 +02:00
|
|
|
{
|
2016-02-03 14:22:58 +07:00
|
|
|
"name": "orbit-db",
|
2016-10-28 13:34:46 +03:00
|
|
|
"version": "0.13.6",
|
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": {
|
|
|
|
"fs": "html5-fs"
|
|
|
|
},
|
2016-04-27 08:48:12 +02:00
|
|
|
"main": "src/OrbitDB.js",
|
2015-12-26 19:05:51 +02:00
|
|
|
"dependencies": {
|
2016-10-28 13:20:08 +03:00
|
|
|
"logplease": "^1.2.9",
|
2016-10-27 17:41:15 +03:00
|
|
|
"orbit-db-store": "^0.1.9",
|
|
|
|
"ipfs-log": "^1.5.2",
|
|
|
|
"orbit-db-counterstore": "0.1.7",
|
|
|
|
"orbit-db-eventstore": "0.1.8",
|
|
|
|
"orbit-db-feedstore": "0.1.7",
|
|
|
|
"orbit-db-kvstore": "0.1.6",
|
2016-10-11 09:48:11 -04:00
|
|
|
"orbit-db-pubsub": "0.0.6",
|
2016-10-18 17:42:15 +02:00
|
|
|
"orbit-db-docstore": "0.0.8"
|
2015-12-26 19:05:51 +02:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2016-07-04 02:42:32 +02:00
|
|
|
"asyncawait": "^1.0.6",
|
2016-07-31 11:10:39 +02:00
|
|
|
"babel-core": "^6.11.4",
|
2016-04-15 11:39:46 +02:00
|
|
|
"babel-loader": "^6.2.4",
|
2016-05-11 12:25:11 +02:00
|
|
|
"babel-plugin-transform-runtime": "^6.8.0",
|
2016-10-03 17:25:51 +02:00
|
|
|
"babel-polyfill": "^6.16.0",
|
2016-04-15 11:39:46 +02:00
|
|
|
"babel-preset-es2015": "^6.6.0",
|
2016-10-04 18:40:22 +02:00
|
|
|
"bluebird": "^3.4.6",
|
2016-05-16 23:51:20 +02:00
|
|
|
"exports-loader": "^0.6.3",
|
2016-11-01 14:54:56 +01:00
|
|
|
"fs-pull-blob-store": "^0.4.1",
|
2016-10-03 17:25:51 +02:00
|
|
|
"html5-fs": "https://github.com/haadcode/html5-fs.git",
|
2016-11-01 14:54:56 +01:00
|
|
|
"ipfs-daemon": "0.1.0",
|
2016-10-27 13:46:22 +03:00
|
|
|
"ipfs-test-apis": "0.0.6",
|
2016-05-08 18:18:59 +02:00
|
|
|
"json-loader": "^0.5.4",
|
2016-04-13 10:38:27 +02:00
|
|
|
"lodash": "^4.3.0",
|
2016-10-05 17:26:57 +02:00
|
|
|
"mocha": "^3.1.0",
|
2016-04-15 11:39:46 +02:00
|
|
|
"stream-http": "^2.2.1",
|
2016-11-01 15:09:55 +01:00
|
|
|
"webpack": "^2.1.0-beta.25"
|
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-09-14 15:34:25 +02:00
|
|
|
"postinstall": "./scripts/post_install.sh",
|
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-10-05 10:57:49 +02:00
|
|
|
"build:dist": "./node_modules/.bin/webpack --config conf/webpack.config.js",
|
|
|
|
"build:minified": "./node_modules/.bin/webpack --config conf/webpack.config.minified.js",
|
|
|
|
"build:examples": "./node_modules/.bin/webpack --config conf/webpack.example.config.js",
|
2016-08-05 10:02:19 +02:00
|
|
|
"stats": "./node_modules/.bin/webpack --json > stats.json"
|
2015-12-26 19:05:51 +02:00
|
|
|
}
|
|
|
|
}
|