embark/package.json

106 lines
2.9 KiB
JSON
Raw Normal View History

2015-05-24 12:38:56 +00:00
{
"name": "embark",
2018-08-20 14:03:13 +00:00
"version": "3.1.10",
2016-10-02 23:01:10 +00:00
"description": "Embark is a framework that allows you to easily develop and deploy DApps",
2015-05-24 12:38:56 +00:00
"scripts": {
2017-12-14 15:26:39 +00:00
"lint": "./node_modules/.bin/eslint lib/",
2018-07-11 15:43:42 +00:00
"test": "mocha test/ --no-timeouts --exit",
2018-04-11 13:17:43 +00:00
"testdapp_1": "cd test_apps/test_app/ && npm install && node ../../bin/embark test",
"testdapp_2": "cd test_apps/contracts_app/ && npm install && node ../../bin/embark test",
2018-03-29 22:20:45 +00:00
"fulltest": "npm run lint && npm run test && npm run testdapp_1 && npm run testdapp_2"
2015-05-24 12:38:56 +00:00
},
"bin": {
"embark": "./bin/embark",
"ganache-cli-embark": "./node_modules/.bin/ganache-cli"
2015-05-24 12:38:56 +00:00
},
"main": "./lib/index.js",
2015-06-09 11:57:19 +00:00
"directories": {
"lib": "./lib"
},
2017-01-14 00:17:01 +00:00
"repository": {
"type": "git",
"url": "https://github.com/iurimatias/embark-framework.git"
},
2015-05-24 12:38:56 +00:00
"dependencies": {
"ascii-table": "0.0.9",
2016-08-13 14:48:00 +00:00
"async": "^2.0.1",
2018-01-17 00:17:52 +00:00
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-webpack-aliases": "^1.1.3",
2018-01-17 00:17:52 +00:00
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2016": "^6.24.1",
"babel-preset-es2017": "6.24.1",
"babel-preset-react": "^6.24.1",
2018-05-10 18:52:51 +00:00
"bip39": "^2.5.0",
WIP to merge in other swarm changes Adding swarm to embarkjs. WIP. Add 'auto' setting for geth CORS and websockets origin * 'auto' now supported for `rpcCorsDomain` and `wsOrigins` in the blockchain config. * 'auto' set to the default value in blockchain config for test and demo apps. test add config and contract and add test addFileToPipeline test and registerBeforeDeploy with new arg add more registers but generation one fails in run WIP commit Undo changes to test config. Merge pull request #381 from embark-framework/features/cors-auto Add 'auto' setting for geth CORS and websockets origin fix a bug where upload cmd used plugin name don't error if it's an empty dapp with no contracts yet Merge pull request #383 from embark-framework/no_contracts don't error if it's an empty dapp with no contracts yet remove duplicated entry force zepplein version for travis Merge pull request #384 from embark-framework/chores/test-allpligin-apis Small fixes for plugin APIs intercept logs in the app itself - stopgap fix Merge pull request #385 from embark-framework/console_logs_fix intercept logs in the app itself - stopgap fix * removed unneeded provider property. * add 'swarm' as a provider in the storage.config * update method for swarm service check Merge branch 'develop' into features/add-swarm-to-embarkjs More work to add swarm to embarkjs * added eth-lib to parse result of swarm text * changed "currentStorage" and "currentMessages" to "currentProvider" for consistency. * added protocol to storage config * selectively starts storage service depending on which one is configured in the storage config * run service check for ipfs/swarm prior to uploaded * added swarm methods for embarkjs Updated code based on code review check if testrpc is installed and warn if not Merge pull request #386 from embark-framework/bug_fix/test-rpc-not-installed check if testrpc is installed and warn if not Removed timeout Removed spacer Merge pull request #382 from embark-framework/react-demo Updating embark demo to use react instead of jquery fix on contract add Merge pull request #387 from embark-framework/bug_fix/new-contract-in-empty-dapp Fix adding a contract redeploy with right config on config change fix tests reset watchers after build to make sure files remain watch Merge pull request #389 from embark-framework/bug_fix/file-changes-not-watched Fix files not being watched Merge pull request #388 from embark-framework/bug_fix/changing-contract-config Redeploy with right config on config change Added swarm support in embarkjs and isAvailable for messages/storage * reverted currentProvider back to currentStorage and currentMessages * added `EmbarkJS.Storage.isAvailable` and `EmbarkJS.Messages.isAvailable()` and underlying provider functions for Whisper, Orbit, IPFS, and Swarm * Finished swarm implementation in embarkjs plus cleanup * updated test app storage config to swarm to show swarm config option Merge branch 'develop' into features/add-swarm-to-embarkjs
2018-04-30 05:56:43 +00:00
"chokidar": "^2.0.3",
2018-06-01 17:44:49 +00:00
"clone-deep": "^4.0.0",
2016-08-14 15:10:34 +00:00
"colors": "^1.1.2",
"commander": "^2.15.1",
"css-loader": "^0.28.11",
2018-07-06 08:38:09 +00:00
"decompress": "^4.2.0",
WIP to merge in other swarm changes Adding swarm to embarkjs. WIP. Add 'auto' setting for geth CORS and websockets origin * 'auto' now supported for `rpcCorsDomain` and `wsOrigins` in the blockchain config. * 'auto' set to the default value in blockchain config for test and demo apps. test add config and contract and add test addFileToPipeline test and registerBeforeDeploy with new arg add more registers but generation one fails in run WIP commit Undo changes to test config. Merge pull request #381 from embark-framework/features/cors-auto Add 'auto' setting for geth CORS and websockets origin fix a bug where upload cmd used plugin name don't error if it's an empty dapp with no contracts yet Merge pull request #383 from embark-framework/no_contracts don't error if it's an empty dapp with no contracts yet remove duplicated entry force zepplein version for travis Merge pull request #384 from embark-framework/chores/test-allpligin-apis Small fixes for plugin APIs intercept logs in the app itself - stopgap fix Merge pull request #385 from embark-framework/console_logs_fix intercept logs in the app itself - stopgap fix * removed unneeded provider property. * add 'swarm' as a provider in the storage.config * update method for swarm service check Merge branch 'develop' into features/add-swarm-to-embarkjs More work to add swarm to embarkjs * added eth-lib to parse result of swarm text * changed "currentStorage" and "currentMessages" to "currentProvider" for consistency. * added protocol to storage config * selectively starts storage service depending on which one is configured in the storage config * run service check for ipfs/swarm prior to uploaded * added swarm methods for embarkjs Updated code based on code review check if testrpc is installed and warn if not Merge pull request #386 from embark-framework/bug_fix/test-rpc-not-installed check if testrpc is installed and warn if not Removed timeout Removed spacer Merge pull request #382 from embark-framework/react-demo Updating embark demo to use react instead of jquery fix on contract add Merge pull request #387 from embark-framework/bug_fix/new-contract-in-empty-dapp Fix adding a contract redeploy with right config on config change fix tests reset watchers after build to make sure files remain watch Merge pull request #389 from embark-framework/bug_fix/file-changes-not-watched Fix files not being watched Merge pull request #388 from embark-framework/bug_fix/changing-contract-config Redeploy with right config on config change Added swarm support in embarkjs and isAvailable for messages/storage * reverted currentProvider back to currentStorage and currentMessages * added `EmbarkJS.Storage.isAvailable` and `EmbarkJS.Messages.isAvailable()` and underlying provider functions for Whisper, Orbit, IPFS, and Swarm * Finished swarm implementation in embarkjs plus cleanup * updated test app storage config to swarm to show swarm config option Merge branch 'develop' into features/add-swarm-to-embarkjs
2018-04-30 05:56:43 +00:00
"deep-equal": "^1.0.1",
"ejs": "^2.5.8",
"eth-ens-namehash": "^2.0.8",
WIP to merge in other swarm changes Adding swarm to embarkjs. WIP. Add 'auto' setting for geth CORS and websockets origin * 'auto' now supported for `rpcCorsDomain` and `wsOrigins` in the blockchain config. * 'auto' set to the default value in blockchain config for test and demo apps. test add config and contract and add test addFileToPipeline test and registerBeforeDeploy with new arg add more registers but generation one fails in run WIP commit Undo changes to test config. Merge pull request #381 from embark-framework/features/cors-auto Add 'auto' setting for geth CORS and websockets origin fix a bug where upload cmd used plugin name don't error if it's an empty dapp with no contracts yet Merge pull request #383 from embark-framework/no_contracts don't error if it's an empty dapp with no contracts yet remove duplicated entry force zepplein version for travis Merge pull request #384 from embark-framework/chores/test-allpligin-apis Small fixes for plugin APIs intercept logs in the app itself - stopgap fix Merge pull request #385 from embark-framework/console_logs_fix intercept logs in the app itself - stopgap fix * removed unneeded provider property. * add 'swarm' as a provider in the storage.config * update method for swarm service check Merge branch 'develop' into features/add-swarm-to-embarkjs More work to add swarm to embarkjs * added eth-lib to parse result of swarm text * changed "currentStorage" and "currentMessages" to "currentProvider" for consistency. * added protocol to storage config * selectively starts storage service depending on which one is configured in the storage config * run service check for ipfs/swarm prior to uploaded * added swarm methods for embarkjs Updated code based on code review check if testrpc is installed and warn if not Merge pull request #386 from embark-framework/bug_fix/test-rpc-not-installed check if testrpc is installed and warn if not Removed timeout Removed spacer Merge pull request #382 from embark-framework/react-demo Updating embark demo to use react instead of jquery fix on contract add Merge pull request #387 from embark-framework/bug_fix/new-contract-in-empty-dapp Fix adding a contract redeploy with right config on config change fix tests reset watchers after build to make sure files remain watch Merge pull request #389 from embark-framework/bug_fix/file-changes-not-watched Fix files not being watched Merge pull request #388 from embark-framework/bug_fix/changing-contract-config Redeploy with right config on config change Added swarm support in embarkjs and isAvailable for messages/storage * reverted currentProvider back to currentStorage and currentMessages * added `EmbarkJS.Storage.isAvailable` and `EmbarkJS.Messages.isAvailable()` and underlying provider functions for Whisper, Orbit, IPFS, and Swarm * Finished swarm implementation in embarkjs plus cleanup * updated test app storage config to swarm to show swarm config option Merge branch 'develop' into features/add-swarm-to-embarkjs
2018-04-30 05:56:43 +00:00
"eth-lib": "^0.2.8",
"ethereumjs-wallet": "0.6.0",
2017-12-14 00:24:20 +00:00
"file-loader": "^1.1.5",
2018-03-30 16:47:15 +00:00
"finalhandler": "^1.1.1",
"follow-redirects": "^1.2.4",
2017-02-19 03:40:42 +00:00
"fs-extra": "^2.0.0",
2018-06-13 16:03:00 +00:00
"ganache-cli": "6.1.0",
2017-02-19 13:59:51 +00:00
"globule": "^1.1.0",
2018-05-10 16:22:58 +00:00
"hard-source-webpack-plugin": "^0.6.6",
2018-06-07 16:50:22 +00:00
"http-proxy": "^1.17.0",
2017-12-17 23:34:41 +00:00
"http-shutdown": "^1.2.0",
2018-05-08 21:49:46 +00:00
"i18n": "^0.8.3",
2017-12-13 15:59:53 +00:00
"ipfs-api": "17.2.4",
2018-06-13 13:40:19 +00:00
"live-plugin-manager-git-fix": "^0.12.1",
"merge": "^1.2.0",
2018-07-11 14:53:12 +00:00
"mocha": "^5.2.0",
"neo-blessed": "^0.2.0",
2018-06-27 18:32:13 +00:00
"netcat": "^1.3.5",
2018-06-04 17:12:51 +00:00
"node-ipc": "^9.1.1",
2018-06-27 18:32:13 +00:00
"node-netcat": "^1.4.8",
"ora": "^2.1.0",
"os-locale": "^2.1.0",
"parse-json": "^4.0.0",
"promptly": "^2.1.0",
2017-12-19 18:29:48 +00:00
"propose": "0.0.5",
"request": "^2.85.0",
2016-08-14 15:10:34 +00:00
"serve-static": "^1.11.1",
"shelljs": "^0.5.0",
2018-06-12 12:50:49 +00:00
"simples": "^0.8.8",
2018-06-01 22:09:54 +00:00
"solc": "0.4.24",
2018-05-20 16:23:48 +00:00
"string-replace-async": "^1.2.1",
2017-12-07 20:27:03 +00:00
"style-loader": "^0.19.0",
"tar": "^3.1.5",
2017-01-14 00:17:01 +00:00
"toposort": "^1.0.0",
WIP to merge in other swarm changes Adding swarm to embarkjs. WIP. Add 'auto' setting for geth CORS and websockets origin * 'auto' now supported for `rpcCorsDomain` and `wsOrigins` in the blockchain config. * 'auto' set to the default value in blockchain config for test and demo apps. test add config and contract and add test addFileToPipeline test and registerBeforeDeploy with new arg add more registers but generation one fails in run WIP commit Undo changes to test config. Merge pull request #381 from embark-framework/features/cors-auto Add 'auto' setting for geth CORS and websockets origin fix a bug where upload cmd used plugin name don't error if it's an empty dapp with no contracts yet Merge pull request #383 from embark-framework/no_contracts don't error if it's an empty dapp with no contracts yet remove duplicated entry force zepplein version for travis Merge pull request #384 from embark-framework/chores/test-allpligin-apis Small fixes for plugin APIs intercept logs in the app itself - stopgap fix Merge pull request #385 from embark-framework/console_logs_fix intercept logs in the app itself - stopgap fix * removed unneeded provider property. * add 'swarm' as a provider in the storage.config * update method for swarm service check Merge branch 'develop' into features/add-swarm-to-embarkjs More work to add swarm to embarkjs * added eth-lib to parse result of swarm text * changed "currentStorage" and "currentMessages" to "currentProvider" for consistency. * added protocol to storage config * selectively starts storage service depending on which one is configured in the storage config * run service check for ipfs/swarm prior to uploaded * added swarm methods for embarkjs Updated code based on code review check if testrpc is installed and warn if not Merge pull request #386 from embark-framework/bug_fix/test-rpc-not-installed check if testrpc is installed and warn if not Removed timeout Removed spacer Merge pull request #382 from embark-framework/react-demo Updating embark demo to use react instead of jquery fix on contract add Merge pull request #387 from embark-framework/bug_fix/new-contract-in-empty-dapp Fix adding a contract redeploy with right config on config change fix tests reset watchers after build to make sure files remain watch Merge pull request #389 from embark-framework/bug_fix/file-changes-not-watched Fix files not being watched Merge pull request #388 from embark-framework/bug_fix/changing-contract-config Redeploy with right config on config change Added swarm support in embarkjs and isAvailable for messages/storage * reverted currentProvider back to currentStorage and currentMessages * added `EmbarkJS.Storage.isAvailable` and `EmbarkJS.Messages.isAvailable()` and underlying provider functions for Whisper, Orbit, IPFS, and Swarm * Finished swarm implementation in embarkjs plus cleanup * updated test app storage config to swarm to show swarm config option Merge branch 'develop' into features/add-swarm-to-embarkjs
2018-04-30 05:56:43 +00:00
"underscore": "^1.9.0",
"underscore.string": "^3.3.4",
2017-12-14 00:24:20 +00:00
"url-loader": "^0.6.2",
"uuid": "^3.2.1",
"viz.js": "^1.8.1",
2018-04-17 18:48:17 +00:00
"web3": "1.0.0-beta.34",
2018-01-12 19:21:36 +00:00
"webpack": "^3.10.0",
2017-12-19 20:14:09 +00:00
"window-size": "^1.1.0"
2015-05-24 12:38:56 +00:00
},
"author": "Iuri Matias <iuri.matias@gmail.com>",
"contributors": [],
2017-01-14 00:17:01 +00:00
"keywords": [
"ethereum",
"dapps",
"ipfs",
"solidity",
"solc",
"blockchain",
"serverless"
],
"homepage": "https://github.com/iurimatias/embark-framework",
"license": "MIT",
"devDependencies": {
"eslint": "4.13.1",
"mocha-sinon": "^1.1.4",
2018-04-19 19:13:41 +00:00
"sinon": "^4.5.0"
}
2015-05-24 12:38:56 +00:00
}