embark/packages/core/utils/package.json

92 lines
2.3 KiB
JSON
Raw Normal View History

{
"name": "embark-utils",
2019-11-05 20:55:06 +00:00
"version": "5.0.0-alpha.1",
"author": "Iuri Matias <iuri.matias@gmail.com>",
"contributors": [],
"description": "Utils used by Embark",
"homepage": "https://github.com/embark-framework/embark/tree/master/packages/core/utils#readme",
"bugs": "https://github.com/embark-framework/embark/issues",
"keywords": [
"blockchain",
"dapps",
"ethereum",
"ipfs",
"serverless",
"solc",
"solidity"
],
"files": [
"dist"
],
"license": "MIT",
"repository": {
"directory": "packages/core/utils",
"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:js": "eslint src/",
"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-corejs3": "7.7.4",
"bip39": "3.0.2",
"clipboardy": "1.2.3",
"colors": "1.3.2",
"core-js": "3.3.5",
2019-11-05 20:55:06 +00:00
"embark-i18n": "^5.0.0-alpha.1",
"embark-logger": "^5.0.0-alpha.1",
"ethereumjs-wallet": "0.6.3",
"find-up": "2.1.0",
"follow-redirects": "1.8.0",
"fs-extra": "8.1.0",
2019-05-01 20:00:04 +00:00
"fuzzy": "0.1.3",
"glob": "7.1.4",
"globule": "1.2.1",
"merge": "1.2.1",
"multihashes": "0.4.14",
"ora": "4.0.3",
"pretty-ms": "5.0.0",
"shelljs": "0.8.3",
"web3": "1.2.1",
"web3-eth": "1.2.1",
"web3-eth-abi": "1.2.1",
"ws": "7.1.2"
},
"devDependencies": {
"@types/follow-redirects": "1.5.0",
"@types/fs-extra": "7.0.0",
"@types/node": "12.7.8",
"@types/pretty-ms": "5.0.1",
2019-10-28 21:05:13 +00:00
"embark-inside-monorepo": "^5.0.0-alpha.0",
"embark-solo": "^5.0.0-alpha.0",
"eslint": "5.7.0",
"npm-run-all": "4.1.5",
"rimraf": "3.0.0",
"tslint": "5.16.0",
"typescript": "3.6.3"
},
"engines": {
"node": ">=10.17.0 <12.0.0",
"npm": ">=6.11.3",
"yarn": ">=1.19.1"
}
}