2015-12-26 19:05:51 +02:00
|
|
|
{
|
2016-02-03 14:22:58 +07:00
|
|
|
"name": "orbit-db",
|
2016-04-27 12:45:01 +02:00
|
|
|
"version": "0.7.6",
|
2016-02-03 14:22:58 +07:00
|
|
|
"description": "Key-Value Store and Event Log 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-03-10 09:43:06 +01:00
|
|
|
"main": "src/Client.js",
|
2015-12-26 19:05:51 +02:00
|
|
|
"dependencies": {
|
2016-04-15 11:39:46 +02:00
|
|
|
"buffer": "^4.5.1",
|
2016-04-27 12:44:56 +02:00
|
|
|
"ipfs-log": "^1.2.8",
|
2016-03-03 11:51:28 +01:00
|
|
|
"lazy.js": "^0.4.2",
|
2016-04-16 12:11:44 +02:00
|
|
|
"logplease": "^1.2.5",
|
2016-03-11 09:31:03 +01:00
|
|
|
"socket.io-client": "^1.4.5"
|
2015-12-26 19:05:51 +02:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2016-04-13 09:53:14 +02:00
|
|
|
"asyncawait": "^1.0.1",
|
2016-04-15 11:39:46 +02:00
|
|
|
"babel-core": "^6.7.6",
|
|
|
|
"babel-loader": "^6.2.4",
|
|
|
|
"babel-plugin-transform-runtime": "^6.7.5",
|
|
|
|
"babel-preset-es2015": "^6.6.0",
|
2016-03-06 17:00:01 +01:00
|
|
|
"eslint": "^2.3.0",
|
2016-04-15 11:39:46 +02:00
|
|
|
"ipfs-api": "^3.0.0",
|
2016-04-27 12:09:58 +02:00
|
|
|
"ipfsd-ctl": "^0.12.0",
|
2016-04-15 11:39:46 +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:09:58 +02:00
|
|
|
"orbit-common": "^0.2.8",
|
2016-04-15 11:39:46 +02:00
|
|
|
"stream-http": "^2.2.1",
|
|
|
|
"webpack": "^1.12.15"
|
2016-01-20 16:05:47 +08:00
|
|
|
},
|
|
|
|
"scripts": {
|
2016-03-06 17:00:01 +01:00
|
|
|
"test": "mocha",
|
2016-04-15 11:39:46 +02:00
|
|
|
"lint": "$(npm bin)/eslint ./src || true",
|
|
|
|
"build": "npm run build:dist && npm run build:examples",
|
|
|
|
"build:dist": "./node_modules/.bin/webpack --config webpack.config.js",
|
|
|
|
"build:examples": "./node_modules/.bin/webpack --config webpack.example.config.js"
|
2015-12-26 19:05:51 +02:00
|
|
|
}
|
|
|
|
}
|