mirror of
https://github.com/embarklabs/embark.git
synced 2025-01-28 22:45:48 +00:00
908064f4e1
**NOTE:** Running a dapp with `client: “vm”` does not work, however I am not sure if that is intentional in v5 or not. **NOTE:** Running `embark test` in the demo DApp does work, although there is an error that I am assuming does actually pertain to this PR: ``` made request without listener: whisper:node:register Trace: at EmbarkEmitter.trace [as request] (/Users/emizzle/Code/__Github/embk-fw/embark/packages/embark/src/lib/core/events.js:142:13) at new request (/Users/emizzle/Code/__Github/embk-fw/embark/packages/embark/src/lib/modules/geth/index.js:49:17) at Plugin.loadInternalPlugin (/Users/emizzle/Code/__Github/embk-fw/embark/packages/embark/src/lib/core/plugin.js:117:10) at Plugins.loadInternalPlugin (/Users/emizzle/Code/__Github/embk-fw/embark/packages/embark/src/lib/core/plugins.js:96:40) at Engine.loadInternalPlugin [as registerModule] (/Users/emizzle/Code/__Github/embk-fw/embark/packages/embark/src/lib/core/engine.js:69:18) at Engine.registerModule [as blockchainComponents] (/Users/emizzle/Code/__Github/embk-fw/embark/packages/embark/src/lib/core/engine.js:183:10) at Engine.apply [as registerModuleGroup] (/Users/emizzle/Code/__Github/embk-fw/embark/packages/embark/src/lib/core/engine.js:104:18) at registerModuleGroup (/Users/emizzle/Code/__Github/embk-fw/embark/packages/embark/src/cmd/cmd_controller.js:740:16) at nextTask (/Users/emizzle/Code/__Github/embk-fw/embark/node_modules/async/dist/async.js:5324:14) at next (/Users/emizzle/Code/__Github/embk-fw/embark/node_modules/async/dist/async.js:5331:9) at /Users/emizzle/Code/__Github/embk-fw/embark/node_modules/async/dist/async.js:969:16 at callback (/Users/emizzle/Code/__Github/embk-fw/embark/packages/embark/src/lib/core/engine.js:47:9) at Client.done (/Users/emizzle/Code/__Github/embk-fw/embark/packages/core/core/src/ipc.js:46:11) at Client.emit (/Users/emizzle/Code/__Github/embk-fw/embark/node_modules/event-pubsub/es5.js:74:21) at Socket.connectionClosed (/Users/emizzle/Code/__Github/embk-fw/embark/node_modules/node-ipc/dao/client.js:201:20) at Socket.emit (events.js:198:13) ```
65 lines
1.6 KiB
JSON
65 lines
1.6 KiB
JSON
{
|
|
"name": "embark-ganache",
|
|
"version": "4.1.1",
|
|
"author": "Iuri Matias <iuri.matias@gmail.com>",
|
|
"contributors": [],
|
|
"description": "Implementation of the Ganache simulator for Embark",
|
|
"homepage": "https://github.com/embark-framework/embark/tree/master/packages/plugins/ganache#readme",
|
|
"bugs": "https://github.com/embark-framework/embark/issues",
|
|
"keywords": [
|
|
"blockchain",
|
|
"dapps",
|
|
"ethereum",
|
|
"ipfs",
|
|
"serverless",
|
|
"solc",
|
|
"solidity"
|
|
],
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"license": "MIT",
|
|
"repository": {
|
|
"directory": "packages/plugins/ganache",
|
|
"type": "git",
|
|
"url": "https://github.com/embark-framework/embark.git"
|
|
},
|
|
"main": "./dist/index.js",
|
|
"embark-collective": {
|
|
"build:node": true
|
|
},
|
|
"scripts": {
|
|
"_build": "npm run solo -- build",
|
|
"ci": "npm run qa",
|
|
"clean": "npm run reset",
|
|
"lint": "npm-run-all lint:*",
|
|
"lint:ts": "tslint -c tslint.json \"src/**/*.ts\"",
|
|
"qa": "npm-run-all lint typecheck _build",
|
|
"reset": "npx rimraf dist embark-*.tgz package",
|
|
"solo": "embark-solo",
|
|
"typecheck": "tsc",
|
|
"watch": "run-p watch:*",
|
|
"watch:typecheck": "npm run typecheck -- --preserveWatchOutput --watch"
|
|
},
|
|
"eslintConfig": {
|
|
"extends": "../../../.eslintrc.json"
|
|
},
|
|
"dependencies": {
|
|
"@babel/runtime-corejs2": "7.6.2",
|
|
"ganache-cli": "6.4.3"
|
|
},
|
|
"devDependencies": {
|
|
"embark-solo": "^4.1.1",
|
|
"eslint": "5.7.0",
|
|
"npm-run-all": "4.1.5",
|
|
"rimraf": "3.0.0",
|
|
"tslint": "5.16.0",
|
|
"typescript": "3.6.3"
|
|
},
|
|
"engines": {
|
|
"node": ">=8.12.0 <12.0.0",
|
|
"npm": ">=6.4.1",
|
|
"yarn": ">=1.12.3"
|
|
}
|
|
}
|