embark/packages/embark/package.json
2020-02-15 00:15:19 +00:00

169 lines
4.5 KiB
JSON

{
"name": "embark",
"version": "5.2.0-nightly.4",
"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/embarklabs/embark/tree/master/packages/embark#readme",
"bugs": "https://github.com/embarklabs/embark/issues",
"keywords": [
"blockchain",
"dapps",
"ethereum",
"ipfs",
"serverless",
"solc",
"solidity"
],
"license": "MIT",
"repository": {
"directory": "packages/embark",
"type": "git",
"url": "https://github.com/embarklabs/embark.git"
},
"bin": {
"embark": "./bin/embark"
},
"main": "./dist/lib/index.js",
"types": "./dist/lib/index.d.ts",
"files": [
"bin",
"dist/bin",
"dist/cmd",
"dist/lib",
"locales"
],
"embark-collective": {
"build:node": true,
"typecheck": {
"include": [
"src/bin/**/*",
"src/cmd/**/*",
"src/lib/**/*"
]
}
},
"scripts": {
"_build": "npm run solo -- build",
"_typecheck": "npm run solo -- typecheck",
"ci": "npm run qa",
"clean": "npm run reset",
"lint": "eslint bin/embark src/bin/ src/lib/",
"qa": "npm-run-all lint _typecheck _build test",
"reset": "npx rimraf .nyc_output coverage dist embark-*.tgz package",
"solo": "embark-solo",
"test": "nyc --reporter=html --reporter=json mocha \"dist/test/**/*.js\" --exit --no-timeouts --require ./scripts/test.js --require source-map-support/register"
},
"eslintConfig": {
"extends": "../../.eslintrc.json"
},
"nyc": {
"exclude": [
"**/node_modules/**",
"coverage/**",
"dist/test/**"
]
},
"dependencies": {
"@babel/runtime-corejs3": "7.7.4",
"ajv": "6.10.2",
"ascii-table": "0.0.9",
"async": "2.6.1",
"bip39": "3.0.2",
"chalk": "2.4.2",
"clone-deep": "4.0.0",
"colors": "1.3.2",
"commander": "2.18.0",
"core-js": "3.4.3",
"date-and-time": "0.6.2",
"decompress": "4.2.0",
"embark-core": "^5.2.0-nightly.4",
"embark-deploy-tracker": "^5.2.0-nightly.3",
"embark-engine": "^5.2.0-nightly.4",
"embark-graph": "^5.2.0-nightly.3",
"embark-i18n": "^5.1.1",
"embark-logger": "^5.2.0-nightly.3",
"embark-reset": "^5.1.1",
"embark-suggestions": "^5.2.0-nightly.4",
"embark-utils": "^5.2.0-nightly.3",
"eth-ens-namehash": "2.0.8",
"find-up": "2.1.0",
"flatted": "0.2.3",
"fs-extra": "8.1.0",
"ganache-cli": "6.8.2",
"glob": "7.1.4",
"globule": "1.2.1",
"hosted-git-info": "2.7.1",
"http-proxy": "1.17.0",
"istanbul": "0.4.5",
"json-parse-better-errors": "1.0.2",
"lodash.clonedeep": "4.5.0",
"mocha": "6.2.2",
"neo-blessed": "0.2.0",
"node-ipc": "9.1.1",
"npmlog": "4.1.2",
"parse-json": "4.0.0",
"pkg-up": "2.0.0",
"promptly": "2.2.0",
"propose": "0.0.5",
"pump": "3.0.0",
"request": "2.88.0",
"semver": "5.6.0",
"shelljs": "0.8.3",
"simples": "0.8.8",
"source-map-support": "0.5.13",
"string-replace-async": "1.2.1",
"term.js": "0.0.7",
"viz.js": "1.8.2",
"vm2": "3.6.4",
"web3": "1.2.6",
"web3-bzz": "1.2.6",
"web3-core": "1.2.6",
"web3-core-helpers": "1.2.6",
"web3-core-method": "1.2.6",
"web3-core-promievent": "1.2.6",
"web3-core-subscriptions": "1.2.6",
"web3-eth": "1.2.6",
"web3-eth-abi": "1.2.6",
"web3-eth-accounts": "1.2.6",
"web3-eth-contract": "1.2.6",
"web3-eth-iban": "1.2.6",
"web3-eth-personal": "1.2.6",
"web3-net": "1.2.6",
"web3-providers-http": "1.2.6",
"web3-providers-ipc": "1.2.6",
"web3-providers-ws": "1.2.6",
"web3-shh": "1.2.6",
"web3-utils": "1.2.6",
"window-size": "1.1.1"
},
"devDependencies": {
"chai": "4.1.2",
"embark-code-runner": "^5.2.0-nightly.4",
"embark-compiler": "^5.2.0-nightly.4",
"embark-contracts-manager": "^5.2.0-nightly.4",
"embark-solidity": "^5.2.0-nightly.4",
"embark-solo": "^5.1.1",
"embark-test-contract-0": "0.0.2",
"embark-test-contract-1": "0.0.1",
"embark-testing": "^5.2.0-nightly.3",
"embark-transaction-logger": "^5.2.0-nightly.4",
"eslint": "5.7.0",
"npm-run-all": "4.1.5",
"nyc": "13.1.0",
"rejected-or-not": "1.0.1",
"rimraf": "3.0.0",
"sinon": "4.5.0"
},
"engines": {
"node": ">=10.17.0",
"npm": ">=6.11.3",
"yarn": ">=1.19.1"
},
"runtime": {
"engines": {
"node": ">=10.17.0"
}
}
}