mirror of
https://github.com/embarklabs/embark.git
synced 2025-02-18 08:36:51 +00:00
This also moves other modules and packages into `embark-core` which are affected by the move of `Engine`. It did some clean-up of some modules (e.g. `lib/utils/utils.js` had a lot of stuff that was not used anywhere). This is the first step to start typing our core inside out. For now we're just moving code into their dedicated package, after that we can address making use of TypeScript features as we see fit.
74 lines
1.8 KiB
JSON
74 lines
1.8 KiB
JSON
{
|
|
"name": "embark-deploy-tracker",
|
|
"version": "5.0.0-alpha.1",
|
|
"author": "Iuri Matias <iuri.matias@gmail.com>",
|
|
"contributors": [],
|
|
"description": "Contract deployment tracker for Embark",
|
|
"homepage": "https://github.com/embark-framework/embark/tree/master/packages/plugins/deploy-tracker#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/deploy-tracker",
|
|
"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": "eslint src/",
|
|
"qa": "npm-run-all lint _build",
|
|
"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"
|
|
},
|
|
"eslintConfig": {
|
|
"extends": "../../../.eslintrc.json"
|
|
},
|
|
"dependencies": {
|
|
"colors": "1.3.2",
|
|
"embark-utils": "^5.0.0-alpha.1",
|
|
"embark-logger": "^5.0.0-alpha.1",
|
|
"fs-extra": "8.1.0",
|
|
"web3": "1.2.1"
|
|
},
|
|
"devDependencies": {
|
|
"embark-solo": "^5.0.0-alpha.0",
|
|
"eslint": "5.7.0",
|
|
"expect.js": "0.3.1",
|
|
"mocha": "6.2.0",
|
|
"npm-run-all": "4.1.5",
|
|
"nyc": "13.1.0",
|
|
"rimraf": "3.0.0",
|
|
"sinon": "7.4.1"
|
|
},
|
|
"engines": {
|
|
"node": ">=10.17.0 <12.0.0",
|
|
"npm": ">=6.11.3",
|
|
"yarn": ">=1.19.1"
|
|
},
|
|
"nyc": {
|
|
"exclude": [
|
|
"**/node_modules/**",
|
|
"coverage/**",
|
|
"dist/test/**"
|
|
]
|
|
}
|
|
}
|