52 lines
1.6 KiB
JSON
52 lines
1.6 KiB
JSON
{
|
|
"name": "orbit-db",
|
|
"version": "0.17.0",
|
|
"description": "Distributed p2p database on IPFS",
|
|
"author": "Haad",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/haadcode/orbit-db"
|
|
},
|
|
"engines": {
|
|
"node": "^6.x.x"
|
|
},
|
|
"browser": {
|
|
"fs-pull-blob-store": "idb-pull-blob-store"
|
|
},
|
|
"main": "src/OrbitDB.js",
|
|
"dependencies": {
|
|
"libp2p-floodsub": "github:libp2p/js-libp2p-floodsub#orbit-floodsub",
|
|
"logplease": "^1.2.12",
|
|
"orbit-db-counterstore": "~0.2.0",
|
|
"orbit-db-docstore": "github:orbitdb/orbit-db-docstore#v0.2.0",
|
|
"orbit-db-eventstore": "~0.2.0",
|
|
"orbit-db-feedstore": "~0.2.0",
|
|
"orbit-db-kvstore": "~0.2.0",
|
|
"orbit-db-pubsub": "~0.2.1"
|
|
},
|
|
"devDependencies": {
|
|
"babel-core": "^6.22.1",
|
|
"babel-loader": "^6.2.10",
|
|
"babel-plugin-transform-runtime": "^6.22.0",
|
|
"babel-polyfill": "^6.22.0",
|
|
"babel-preset-es2015": "^6.22.0",
|
|
"ipfs-daemon": "~0.3.0-beta.24",
|
|
"json-loader": "^0.5.4",
|
|
"mocha": "^3.2.0",
|
|
"p-each-series": "^1.0.0",
|
|
"rimraf": "^2.5.4",
|
|
"uglify-js": "github:mishoo/UglifyJS2#harmony",
|
|
"webpack": "^2.2.1"
|
|
},
|
|
"scripts": {
|
|
"examples": "npm run examples:node",
|
|
"examples:node": "node examples/eventlog.js",
|
|
"examples:browser": "open examples/browser/index.html && LOG=debug node examples/start-daemon.js",
|
|
"test": "mocha",
|
|
"build": "npm run build:examples && npm run build:dist",
|
|
"build:examples": "webpack --config conf/webpack.example.config.js --sort-modules-by size",
|
|
"build:dist": "webpack -p --config conf/webpack.config.js --sort-modules-by size"
|
|
}
|
|
}
|