mirror of
https://github.com/embarklabs/embark.git
synced 2025-02-23 02:48:21 +00:00
235 lines
7.1 KiB
JSON
235 lines
7.1 KiB
JSON
{
|
|
"name": "embark",
|
|
"version": "4.1.0-beta.0",
|
|
"author": "Iuri Matias <iuri.matias@gmail.com>",
|
|
"contributors": [],
|
|
"description": "Embark is a framework that allows you to easily develop and deploy DApps",
|
|
"homepage": "https://github.com/embark-framework/embark/tree/master/packages/embark#readme",
|
|
"bugs": "https://github.com/embark-framework/embark/issues",
|
|
"keywords": [
|
|
"blockchain",
|
|
"dapps",
|
|
"ethereum",
|
|
"ipfs",
|
|
"serverless",
|
|
"solc",
|
|
"solidity"
|
|
],
|
|
"license": "MIT",
|
|
"repository": {
|
|
"directory": "packages/embark",
|
|
"type": "git",
|
|
"url": "https://github.com/embark-framework/embark.git"
|
|
},
|
|
"bin": {
|
|
"embark": "./bin/embark"
|
|
},
|
|
"main": "./dist/lib/index.js",
|
|
"files": [
|
|
"bin",
|
|
"dist/bin",
|
|
"dist/cmd",
|
|
"dist/lib",
|
|
"locales"
|
|
],
|
|
"scripts": {
|
|
"build": "cross-env BABEL_ENV=node babel src --copy-files --extensions \".js,.ts\" --out-dir dist --root-mode upward --source-maps",
|
|
"ci": "npm-run-all qa ci:*",
|
|
"ci:coverage-report": "nyc report --reporter=text-lcov | coveralls || exit 0",
|
|
"clean": "npm run reset",
|
|
"lint": "npm-run-all lint:*",
|
|
"lint:js": "eslint bin/embark src/bin/ src/lib/",
|
|
"lint:ts": "tslint -c tslint.json \"src/**/*.ts\"",
|
|
"package": "npm pack",
|
|
"qa": "npm-run-all lint typecheck build test package",
|
|
"reset": "npx rimraf .nyc_output coverage dist embark-*.tgz package",
|
|
"start": "npm run watch",
|
|
"test": "nyc --reporter=html mocha \"dist/test/**/*.js\" --exit --no-timeouts --require ./scripts/test.js --require source-map-support/register",
|
|
"typecheck": "tsc",
|
|
"watch": "run-p watch:*",
|
|
"watch:build": "npm run build -- --verbose --watch",
|
|
"watch:typecheck": "npm run typecheck -- --preserveWatchOutput --watch"
|
|
},
|
|
"eslintConfig": {
|
|
"extends": "../../.eslintrc.json"
|
|
},
|
|
"dependencies": {
|
|
"@babel/core": "7.2.2",
|
|
"@babel/plugin-proposal-class-properties": "7.3.0",
|
|
"@babel/plugin-proposal-decorators": "7.3.0",
|
|
"@babel/plugin-proposal-object-rest-spread": "7.3.2",
|
|
"@babel/plugin-syntax-dynamic-import": "7.2.0",
|
|
"@babel/plugin-transform-destructuring": "7.3.2",
|
|
"@babel/plugin-transform-flow-strip-types": "7.2.3",
|
|
"@babel/plugin-transform-runtime": "7.2.0",
|
|
"@babel/preset-env": "7.3.1",
|
|
"@babel/preset-react": "7.0.0",
|
|
"@babel/preset-typescript": "7.1.0",
|
|
"@babel/runtime-corejs2": "7.3.1",
|
|
"ajv": "6.5.5",
|
|
"ascii-table": "0.0.9",
|
|
"async": "2.6.1",
|
|
"babel-loader": "8.0.5",
|
|
"babel-plugin-macros": "2.4.5",
|
|
"babel-plugin-module-resolver": "3.1.3",
|
|
"babel-plugin-transform-react-remove-prop-types": "0.4.24",
|
|
"bip39": "2.5.0",
|
|
"body-parser": "1.18.3",
|
|
"chalk": "2.4.2",
|
|
"chokidar": "2.0.4",
|
|
"clipboardy": "1.2.3",
|
|
"clone-deep": "4.0.0",
|
|
"colors": "1.3.2",
|
|
"commander": "2.18.0",
|
|
"css-loader": "1.0.0",
|
|
"date-and-time": "0.6.2",
|
|
"decompress": "4.2.0",
|
|
"deep-equal": "1.0.1",
|
|
"ejs": "2.6.1",
|
|
"embark-compiler": "^4.0.0",
|
|
"embark-logger": "^4.1.0-beta.0",
|
|
"embark-process-logs-api": "^4.1.0-beta.0",
|
|
"embark-profiler": "^4.1.0-beta.0",
|
|
"embark-reset": "^4.1.0-beta.0",
|
|
"embark-specialconfigs": "^4.1.0-beta.0",
|
|
"embark-scaffolding": "^4.1.0-beta.0",
|
|
"embark-ui": "^4.1.0-beta.0",
|
|
"embark-transaction-tracker": "^4.1.0-beta.0",
|
|
"embark-utils": "^4.1.0-beta.0",
|
|
"embark-vyper": "^4.0.0",
|
|
"embark-watcher": "^4.1.0-beta.0",
|
|
"embark-webserver": "^4.1.0-beta.0",
|
|
"embark-whisper": "^4.1.0-beta.0",
|
|
"embarkjs": "^4.1.0-beta.0",
|
|
"embarkjs-ipfs": "^4.1.0-beta.0",
|
|
"embarkjs-swarm": "^4.1.0-beta.0",
|
|
"embarkjs-whisper": "^4.1.0-beta.0",
|
|
"eth-ens-namehash": "2.0.8",
|
|
"ethereumjs-tx": "1.3.7",
|
|
"ethereumjs-util": "6.0.0",
|
|
"ethereumjs-wallet": "0.6.0",
|
|
"file-loader": "2.0.0",
|
|
"find-up": "2.1.0",
|
|
"flatted": "0.2.3",
|
|
"follow-redirects": "1.5.7",
|
|
"fs-extra": "7.0.1",
|
|
"fuzzy": "0.1.3",
|
|
"ganache-cli": "6.2.3",
|
|
"glob": "7.1.3",
|
|
"globule": "1.2.1",
|
|
"handlebars": "4.0.13",
|
|
"hard-source-webpack-plugin": "0.13.1",
|
|
"helmet": "3.13.0",
|
|
"hosted-git-info": "2.7.1",
|
|
"http-proxy": "1.17.0",
|
|
"http-shutdown": "1.2.0",
|
|
"i18n": "0.8.3",
|
|
"ipfs-api": "17.2.4",
|
|
"istanbul": "0.4.5",
|
|
"json-parse-better-errors": "1.0.2",
|
|
"live-plugin-manager-git-fix": "0.12.1",
|
|
"lodash.clonedeep": "4.5.0",
|
|
"mocha": "5.2.0",
|
|
"neo-blessed": "0.2.0",
|
|
"netcat": "1.3.5",
|
|
"node-http-proxy-json": "0.1.6",
|
|
"node-ipc": "9.1.1",
|
|
"node-sass": "4.9.3",
|
|
"npmlog": "4.1.2",
|
|
"opn": "5.3.0",
|
|
"ora": "2.1.0",
|
|
"os-locale": "2.1.0",
|
|
"parse-json": "4.0.0",
|
|
"pkg-up": "2.0.0",
|
|
"pretty-ms": "4.0.0",
|
|
"promptly": "2.2.0",
|
|
"propose": "0.0.5",
|
|
"pump": "3.0.0",
|
|
"remix-debug-debugtest": "0.2.16",
|
|
"remix-tests": "0.1.1",
|
|
"request": "2.88.0",
|
|
"sass-loader": "7.1.0",
|
|
"semver": "5.6.0",
|
|
"shelljs": "0.5.3",
|
|
"simples": "0.8.8",
|
|
"solc": "0.5.0",
|
|
"solidity-parser-antlr": "0.4.2",
|
|
"source-map-support": "0.5.9",
|
|
"stream-json": "1.1.3",
|
|
"string-replace-async": "1.2.1",
|
|
"style-loader": "0.23.1",
|
|
"swarm-api": "0.1.2",
|
|
"tar": "3.2.1",
|
|
"term.js": "0.0.7",
|
|
"url-loader": "1.1.2",
|
|
"uuid": "3.3.2",
|
|
"viz.js": "1.8.2",
|
|
"vm2": "3.6.4",
|
|
"web3": "1.0.0-beta.37",
|
|
"web3-bzz": "1.0.0-beta.37",
|
|
"web3-core": "1.0.0-beta.37",
|
|
"web3-core-helpers": "1.0.0-beta.37",
|
|
"web3-core-method": "1.0.0-beta.37",
|
|
"web3-core-promievent": "1.0.0-beta.37",
|
|
"web3-core-requestmanager": "1.0.0-beta.37",
|
|
"web3-core-subscriptions": "1.0.0-beta.37",
|
|
"web3-eth": "1.0.0-beta.37",
|
|
"web3-eth-abi": "1.0.0-beta.37",
|
|
"web3-eth-accounts": "1.0.0-beta.37",
|
|
"web3-eth-contract": "1.0.0-beta.37",
|
|
"web3-eth-iban": "1.0.0-beta.37",
|
|
"web3-eth-personal": "1.0.0-beta.37",
|
|
"web3-net": "1.0.0-beta.37",
|
|
"web3-providers-http": "1.0.0-beta.37",
|
|
"web3-providers-ipc": "1.0.0-beta.37",
|
|
"web3-providers-ws": "1.0.0-beta.37",
|
|
"web3-shh": "1.0.0-beta.37",
|
|
"web3-utils": "1.0.0-beta.37",
|
|
"webpack": "4.29.3",
|
|
"window-size": "1.1.1",
|
|
"ws": "6.1.2"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/cli": "7.2.3",
|
|
"@types/async": "2.0.50",
|
|
"@types/body-parser": "1.17.0",
|
|
"@types/cors": "2.8.4",
|
|
"@types/express": "4.16.0",
|
|
"@types/express-ws": "3.0.0",
|
|
"@types/find-up": "2.1.0",
|
|
"@types/globule": "1.1.3",
|
|
"@types/handlebars": "4.0.39",
|
|
"@types/helmet": "0.0.42",
|
|
"@types/i18n": "0.8.3",
|
|
"@types/node": "10.11.7",
|
|
"@types/os-locale": "2.1.0",
|
|
"@types/pretty-ms": "3.2.0",
|
|
"@types/request": "2.48.1",
|
|
"@types/web3": "1.0.12",
|
|
"chai": "4.1.2",
|
|
"coveralls": "3.0.2",
|
|
"cross-env": "5.2.0",
|
|
"embark-test-contract-0": "0.0.2",
|
|
"embark-test-contract-1": "0.0.1",
|
|
"eslint": "5.7.0",
|
|
"mocha-sinon": "1.2.0",
|
|
"npm-run-all": "4.1.5",
|
|
"nyc": "13.1.0",
|
|
"rejected-or-not": "1.0.1",
|
|
"rimraf": "2.6.3",
|
|
"sinon": "4.5.0",
|
|
"tslint": "5.11.0",
|
|
"typescript": "3.3.1"
|
|
},
|
|
"engines": {
|
|
"node": ">=8.12.0",
|
|
"npm": ">=6.4.1",
|
|
"yarn": ">=1.12.3"
|
|
},
|
|
"runtime": {
|
|
"engines": {
|
|
"node": ">=8.11.3"
|
|
}
|
|
}
|
|
}
|