mirror of https://github.com/embarklabs/embark.git
77 lines
1.9 KiB
JSON
77 lines
1.9 KiB
JSON
{
|
|
"name": "embark-rpc-manager",
|
|
"version": "5.0.0-alpha.3",
|
|
"description": "Embark RPC Manager",
|
|
"main": "./dist/lib/index.js",
|
|
"repository": {
|
|
"directory": "packages/plugins/embark-rpc-manager",
|
|
"type": "git",
|
|
"url": "https://github.com/embark-framework/embark/"
|
|
},
|
|
"author": "Iuri Matias <iuri.matias@gmail.com>",
|
|
"license": "MIT",
|
|
"bugs": "https://github.com/embark-framework/embark/issues",
|
|
"keywords": [
|
|
"blockchain",
|
|
"dapps",
|
|
"ethereum",
|
|
"ipfs",
|
|
"serverless",
|
|
"solc",
|
|
"solidity"
|
|
],
|
|
"files": [
|
|
"dist/"
|
|
],
|
|
"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 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 source-map-support/register",
|
|
"typecheck": "tsc"
|
|
},
|
|
"eslintConfig": {
|
|
"extends": "../../../.eslintrc.json"
|
|
},
|
|
"dependencies": {
|
|
"@babel/runtime-corejs3": "7.7.4",
|
|
"@omisego/omg-js-util": "2.0.0-v0.2",
|
|
"async": "2.6.1",
|
|
"embark-core": "^5.0.0-alpha.3",
|
|
"embark-i18n": "^5.0.0-alpha.2",
|
|
"embark-utils": "^5.0.0-alpha.2",
|
|
"web3": "1.2.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/async": "2.0.50",
|
|
"cross-env": "5.2.0",
|
|
"eslint": "5.7.0",
|
|
"mocha": "6.2.2",
|
|
"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"
|
|
},
|
|
"nyc": {
|
|
"exclude": [
|
|
"**/node_modules/**",
|
|
"coverage/**",
|
|
"dist/test/**"
|
|
]
|
|
}
|
|
}
|