orbit-db/package.json

59 lines
1.8 KiB
JSON
Raw Normal View History

2015-12-26 19:05:51 +02:00
{
"name": "orbit-db",
2017-01-17 09:25:19 +01:00
"version": "0.16.0",
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": {
2016-10-28 11:41:57 +02:00
"fs-pull-blob-store": "idb-pull-blob-store"
},
"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",
2016-10-28 11:41:57 +02:00
"logplease": "^1.2.9",
"orbit-db-counterstore": "^0.1.8",
"orbit-db-docstore": "haadcode/orbit-db-docstore",
2016-11-25 11:34:57 +01:00
"orbit-db-eventstore": "^0.1.8",
"orbit-db-feedstore": "^0.1.7",
"orbit-db-kvstore": "^0.1.6",
"orbit-db-pubsub": "^0.1.4",
2016-10-28 11:41:57 +02:00
"pull-stream": "^3.4.5"
2015-12-26 19:05:51 +02:00
},
"devDependencies": {
"asyncawait": "^1.0.6",
2016-10-28 12:01:29 +02:00
"babel-core": "^6.18.0",
"babel-loader": "^6.2.7",
"babel-plugin-transform-runtime": "^6.15.0",
2016-10-03 17:25:51 +02:00
"babel-polyfill": "^6.16.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",
"ipfs-daemon": "^0.3.0-beta.16",
"json-loader": "^0.5.4",
2016-10-28 12:01:29 +02:00
"lodash": "^4.16.4",
"mocha": "^3.1.2",
2016-12-30 12:17:12 +01:00
"rimraf": "^2.5.4",
"stream-http": "^2.5.0",
"webpack": "^2.1.0-beta.28"
},
"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-03-06 17:00:01 +01:00
"test": "mocha",
"build": "npm run build:dist && npm run build:minified && npm run build:examples",
"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
}
}