2015-12-26 19:05:51 +02:00
|
|
|
{
|
2016-02-03 14:22:58 +07:00
|
|
|
"name": "orbit-db",
|
2016-08-09 15:15:55 +02:00
|
|
|
"version": "0.11.1",
|
2016-05-07 11:58:38 +02:00
|
|
|
"description": "Distributed p2p database on IPFS",
|
2015-12-26 19:05:51 +02:00
|
|
|
"author": "Haad",
|
2016-01-20 16:05:47 +08:00
|
|
|
"license": "MIT",
|
2016-03-03 15:37:54 +01:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/haadcode/orbit-db"
|
|
|
|
},
|
2016-02-03 14:22:58 +07:00
|
|
|
"engines": {
|
|
|
|
"node": "^4.x.x"
|
2016-01-20 16:05:47 +08:00
|
|
|
},
|
2016-04-27 08:48:12 +02:00
|
|
|
"main": "src/OrbitDB.js",
|
2015-12-26 19:05:51 +02:00
|
|
|
"dependencies": {
|
2016-07-07 16:24:25 +02:00
|
|
|
"logplease": "^1.2.7",
|
2016-08-09 14:28:56 +02:00
|
|
|
"orbit-db-counterstore": "0.1.1",
|
|
|
|
"orbit-db-eventstore": "0.1.1",
|
|
|
|
"orbit-db-feedstore": "0.1.1",
|
|
|
|
"orbit-db-kvstore": "0.1.1",
|
2016-03-11 09:31:03 +01:00
|
|
|
"socket.io-client": "^1.4.5"
|
2015-12-26 19:05:51 +02:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2016-07-04 02:42:32 +02:00
|
|
|
"asyncawait": "^1.0.6",
|
2016-07-31 11:10:39 +02:00
|
|
|
"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-04-15 11:39:46 +02:00
|
|
|
"babel-preset-es2015": "^6.6.0",
|
2016-05-16 23:51:20 +02:00
|
|
|
"exports-loader": "^0.6.3",
|
2016-07-31 11:10:39 +02:00
|
|
|
"ipfs": "^0.13.0",
|
2016-07-07 16:24:25 +02:00
|
|
|
"ipfs-api": "^6.0.3",
|
2016-05-19 11:04:17 +02:00
|
|
|
"ipfsd-ctl": "^0.14.0",
|
2016-05-08 18:18:59 +02:00
|
|
|
"json-loader": "^0.5.4",
|
2016-04-13 10:38:27 +02:00
|
|
|
"lodash": "^4.3.0",
|
2016-04-15 11:39:46 +02:00
|
|
|
"mocha": "^2.4.5",
|
2016-04-27 12:50:46 +02:00
|
|
|
"orbit-server": "^0.2.3",
|
2016-04-15 11:39:46 +02:00
|
|
|
"stream-http": "^2.2.1",
|
2016-05-16 23:51:20 +02:00
|
|
|
"webpack": "^2.1.0-beta.7"
|
2016-01-20 16:05:47 +08:00
|
|
|
},
|
|
|
|
"scripts": {
|
2016-03-06 17:00:01 +01:00
|
|
|
"test": "mocha",
|
2016-07-31 11:10:39 +02:00
|
|
|
"build": "npm run build:dist && npm run build:minified && npm run build:examples",
|
2016-04-15 11:39:46 +02:00
|
|
|
"build:dist": "./node_modules/.bin/webpack --config webpack.config.js",
|
2016-07-31 11:10:39 +02:00
|
|
|
"build:minified": "./node_modules/.bin/webpack --config webpack.config.minified.js",
|
2016-08-05 10:02:19 +02:00
|
|
|
"build:examples": "./node_modules/.bin/webpack --config webpack.example.config.js",
|
|
|
|
"stats": "./node_modules/.bin/webpack --json > stats.json"
|
2015-12-26 19:05:51 +02:00
|
|
|
}
|
|
|
|
}
|