embark/packages/core/engine/package.json

111 lines
3.6 KiB
JSON

{
"name": "embark-engine",
"version": "5.1.0-nightly.1",
"author": "Iuri Matias <iuri.matias@gmail.com>",
"contributors": [],
"description": "Engine library for Embark",
"homepage": "https://github.com/embarklabs/embark/tree/master/packages/core/engine#readme",
"bugs": "https://github.com/embarklabs/embark/issues",
"keywords": [
"blockchain",
"dapps",
"ethereum",
"ipfs",
"serverless",
"solc",
"solidity"
],
"files": [
"dist"
],
"license": "MIT",
"repository": {
"directory": "packages/core/engine",
"type": "git",
"url": "https://github.com/embarklabs/embark.git"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"embark-collective": {
"build:node": true,
"typecheck": true
},
"scripts": {
"_build": "npm run solo -- build",
"_typecheck": "npm run solo -- typecheck",
"ci": "npm run qa",
"clean": "npm run reset",
"lint": "tslint -c tslint.json \"src/**/*.ts\"",
"qa": "npm-run-all lint _typecheck _build",
"reset": "npx rimraf dist embark-*.tgz package",
"solo": "embark-solo"
},
"eslintConfig": {
"extends": "../../../.eslintrc.json"
},
"dependencies": {
"@babel/runtime-corejs3": "7.7.4",
"core-js": "3.4.3",
"embark-accounts-manager": "^5.1.0-nightly.1",
"embark-api": "^5.1.0-nightly.1",
"embark-authenticator": "^5.1.0-nightly.1",
"embark-basic-pipeline": "^5.1.0-nightly.1",
"embark-blockchain": "^5.1.0-nightly.1",
"embark-blockchain-client": "^5.1.0-nightly.1",
"embark-code-runner": "^5.1.0-nightly.1",
"embark-communication": "^5.1.0-nightly.1",
"embark-compiler": "^5.1.0-nightly.1",
"embark-console": "^5.1.0-nightly.1",
"embark-contracts-manager": "^5.1.0-nightly.1",
"embark-core": "^5.1.0-nightly.1",
"embark-coverage": "^5.1.0-nightly.1",
"embark-debugger": "^5.1.0-nightly.1",
"embark-deployment": "^5.1.0-nightly.1",
"embark-embarkjs": "^5.1.0-nightly.1",
"embark-ens": "^5.1.0-nightly.1",
"embark-ethereum-blockchain-client": "^5.1.0-nightly.1",
"embark-ganache": "^5.1.0-nightly.1",
"embark-geth": "^5.1.0-nightly.1",
"embark-ipfs": "^5.1.0-nightly.1",
"embark-library-manager": "^5.1.0-nightly.1",
"embark-logger": "^5.1.0-nightly.1",
"embark-mocha-tests": "^5.1.0-nightly.1",
"embark-namesystem": "^5.1.0-nightly.1",
"embark-parity": "^5.1.0-nightly.1",
"embark-pipeline": "^5.1.0-nightly.1",
"embark-plugin-cmd": "^5.1.0-nightly.1",
"embark-process-logs-api-manager": "^5.1.0-nightly.1",
"embark-profiler": "^5.1.0-nightly.1",
"embark-proxy": "^5.1.0-nightly.1",
"embark-rpc-manager": "^5.1.0-nightly.1",
"embark-scaffolding": "^5.1.0-nightly.1",
"embark-solidity": "^5.1.0-nightly.1",
"embark-solidity-tests": "^5.1.0-nightly.1",
"embark-specialconfigs": "^5.1.0-nightly.1",
"embark-storage": "^5.1.0-nightly.1",
"embark-swarm": "^5.1.0-nightly.1",
"embark-test-runner": "^5.1.0-nightly.1",
"embark-transaction-logger": "^5.1.0-nightly.1",
"embark-transaction-tracker": "^5.1.0-nightly.1",
"embark-utils": "^5.1.0-nightly.1",
"embark-vyper": "^5.1.0-nightly.1",
"embark-watcher": "^5.1.0-nightly.1",
"embark-web3": "^5.1.0-nightly.1",
"embark-webserver": "^5.1.0-nightly.1",
"embark-whisper-geth": "^5.1.0-nightly.1",
"embark-whisper-parity": "^5.1.0-nightly.1"
},
"devDependencies": {
"embark-solo": "^5.1.0-nightly.1",
"npm-run-all": "4.1.5",
"rimraf": "3.0.0",
"tslint": "5.20.1",
"typescript": "3.7.2"
},
"engines": {
"node": ">=10.17.0",
"npm": ">=6.11.3",
"yarn": ">=1.19.1"
}
}