orbit-db/package.json

49 lines
1.4 KiB
JSON
Raw Normal View History

2015-12-26 19:05:51 +02: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",
"license": "MIT",
2016-03-03 15:37:54 +01:00
"repository": {
"type": "git",
"url": "https://github.com/haadcode/orbit-db"
},
"engines": {
"node": "^4.x.x"
},
"main": "src/OrbitDB.js",
2015-12-26 19:05:51 +02:00
"dependencies": {
"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": {
"asyncawait": "^1.0.6",
"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",
"ipfs": "^0.13.0",
"ipfs-api": "^6.0.3",
2016-05-19 11:04:17 +02:00
"ipfsd-ctl": "^0.14.0",
"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",
"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"
},
"scripts": {
2016-03-06 17:00:01 +01:00
"test": "mocha",
"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",
"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"
2015-12-26 19:05:51 +02:00
}
}