orbit-db/package.json

61 lines
1.9 KiB
JSON
Raw Normal View History

2015-12-26 19:05:51 +02: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",
"license": "MIT",
2016-03-03 15:37:54 +01:00
"repository": {
"type": "git",
"url": "https://github.com/haadcode/orbit-db"
},
"engines": {
2016-09-12 16:19:53 +02:00
"node": "^6.x.x"
},
"browser": {
"fs": "html5-fs"
},
"main": "src/OrbitDB.js",
2015-12-26 19:05:51 +02:00
"dependencies": {
"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",
"orbit-db-docstore": "0.0.8"
2015-12-26 19:05:51 +02:00
},
"devDependencies": {
"asyncawait": "^1.0.6",
"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",
"fs-pull-blob-store": "^0.4.1",
2016-10-03 17:25:51 +02:00
"html5-fs": "https://github.com/haadcode/html5-fs.git",
"ipfs-daemon": "0.1.0",
"ipfs-test-apis": "0.0.6",
"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"
},
"scripts": {
"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",
"build": "npm run build:dist && npm run build:minified && npm run build:examples",
"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",
"stats": "./node_modules/.bin/webpack --json > stats.json"
2015-12-26 19:05:51 +02:00
}
}