orbit-db/package.json
2016-10-04 19:07:31 +02:00

52 lines
1.6 KiB
JSON

{
"name": "orbit-db",
"version": "0.11.2",
"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": {
"js-base64": "^2.1.9",
"logplease": "^1.2.7",
"orbit-db-counterstore": "0.1.1",
"orbit-db-eventstore": "0.1.1",
"orbit-db-feedstore": "0.1.1",
"orbit-db-kvstore": "0.1.1",
"orbit-db-pubsub": "0.0.3"
},
"devDependencies": {
"asyncawait": "^1.0.6",
"babel-core": "^6.11.4",
"babel-loader": "^6.2.4",
"babel-plugin-transform-runtime": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"exports-loader": "^0.6.3",
"ipfs": "^0.15.0",
"ipfs-api": "https://github.com/haadcode/js-ipfs-api.git",
"go-ipfs-dep": "https://github.com/haadcode/go-ipfs-dep.git",
"ipfsd-ctl": "https://github.com/haadcode/js-ipfsd-ctl.git",
"json-loader": "^0.5.4",
"lodash": "^4.3.0",
"mocha": "^2.4.5",
"orbit-server": "^0.2.3",
"stream-http": "^2.2.1",
"webpack": "^2.1.0-beta.7"
},
"scripts": {
"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"
}
}