2019-10-16 13:35:26 +00:00
|
|
|
{
|
|
|
|
"name": "embark-parity",
|
2019-11-05 20:55:06 +00:00
|
|
|
"version": "5.0.0-alpha.1",
|
2019-10-16 13:35:26 +00:00
|
|
|
"author": "Iuri Matias <iuri.matias@gmail.com>",
|
|
|
|
"contributors": [],
|
|
|
|
"description": "Implementation of the Parity blockchain for Embark",
|
|
|
|
"homepage": "https://github.com/embark-framework/embark/tree/master/packages/plugins/parity#readme",
|
|
|
|
"bugs": "https://github.com/embark-framework/embark/issues",
|
|
|
|
"keywords": [
|
|
|
|
"blockchain",
|
|
|
|
"dapps",
|
|
|
|
"ethereum",
|
|
|
|
"ipfs",
|
|
|
|
"serverless",
|
|
|
|
"solc",
|
|
|
|
"solidity"
|
|
|
|
],
|
|
|
|
"files": [
|
|
|
|
"dist"
|
|
|
|
],
|
|
|
|
"license": "MIT",
|
|
|
|
"repository": {
|
|
|
|
"directory": "packages/plugins/parity",
|
|
|
|
"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: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": {
|
2019-11-25 23:59:07 +00:00
|
|
|
"@babel/runtime-corejs3": "7.7.4",
|
2019-10-16 13:35:26 +00:00
|
|
|
"async": "2.6.1",
|
2019-10-30 20:10:55 +00:00
|
|
|
"core-js": "3.3.5",
|
2019-11-05 20:55:06 +00:00
|
|
|
"embark-core": "^5.0.0-alpha.1",
|
|
|
|
"embark-i18n": "^5.0.0-alpha.1",
|
|
|
|
"embark-utils": "^5.0.0-alpha.1",
|
2019-10-16 13:35:26 +00:00
|
|
|
"fs-extra": "8.1.0",
|
|
|
|
"netcat": "1.3.5",
|
|
|
|
"semver": "5.6.0",
|
|
|
|
"ws": "7.1.2"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2019-10-28 21:05:13 +00:00
|
|
|
"embark-solo": "^5.0.0-alpha.0",
|
2019-10-16 13:35:26 +00:00
|
|
|
"eslint": "5.7.0",
|
|
|
|
"npm-run-all": "4.1.5",
|
|
|
|
"rimraf": "3.0.0",
|
|
|
|
"tslint": "5.16.0",
|
|
|
|
"typescript": "3.6.3"
|
|
|
|
},
|
|
|
|
"engines": {
|
2019-10-24 13:52:05 +00:00
|
|
|
"node": ">=10.17.0 <12.0.0",
|
|
|
|
"npm": ">=6.11.3",
|
|
|
|
"yarn": ">=1.19.1"
|
2019-10-16 13:35:26 +00:00
|
|
|
}
|
|
|
|
}
|