orbit-db/package.json
2016-10-04 19:11:53 +02:00

55 lines
1.8 KiB
JSON

{
"name": "orbit-db",
"version": "0.12.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"
},
"main": "src/OrbitDB.js",
"dependencies": {
"logplease": "^1.2.7",
"orbit-db-counterstore": "0.1.2",
"orbit-db-eventstore": "0.1.4",
"orbit-db-feedstore": "0.1.3",
"orbit-db-kvstore": "0.1.2",
"orbit-db-pubsub": "0.0.4"
},
"devDependencies": {
"asyncawait": "^1.0.6",
"babel-core": "^6.11.4",
"babel-loader": "^6.2.4",
"babel-plugin-transform-runtime": "^6.8.0",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.6.0",
"bluebird": "^3.4.6",
"exports-loader": "^0.6.3",
"fs-pull-blob-store": "^0.3.0",
"html5-fs": "https://github.com/haadcode/html5-fs.git",
"ipfs-daemon": "0.0.3",
"ipfs-test-apis": "0.0.1",
"json-loader": "^0.5.4",
"lodash": "^4.3.0",
"mocha": "^2.4.5",
"stream-http": "^2.2.1",
"webpack": "^2.1.0-beta.7"
},
"scripts": {
"examples": "npm run example:node",
"examples:node": "LOG=debug node examples/eventlog.js",
"examples:browser": "open examples/browser/index.html && LOG=debug node examples/start-daemon.js",
"postinstall": "./scripts/post_install.sh",
"test": "mocha",
"build": "npm run build:dist && npm run build:minified && npm run build:examples",
"build:dist": "./node_modules/.bin/webpack --config webpack.config.js",
"build:minified": "./node_modules/.bin/webpack --config webpack.config.minified.js",
"build:examples": "./node_modules/.bin/webpack --config webpack.example.config.js",
"stats": "./node_modules/.bin/webpack --json > stats.json"
}
}