mirror of
https://github.com/embarklabs/embark.git
synced 2025-01-10 13:55:45 +00:00
a519a5d527
Make the adjustment even if the test script is currently disabled. Consistently use nyc to generate coverage with mocha even if the test script is currently disabled.
69 lines
2.0 KiB
JSON
69 lines
2.0 KiB
JSON
{
|
|
"name": "embark-debugger",
|
|
"version": "4.1.0-beta.1",
|
|
"author": "Iuri Matias <iuri.matias@gmail.com>",
|
|
"contributors": [],
|
|
"description": "Debugger component for Embark",
|
|
"homepage": "https://github.com/embark-framework/embark/tree/master/packages/embark-debugger#readme",
|
|
"bugs": "https://github.com/embark-framework/embark/issues",
|
|
"keywords": [
|
|
"blockchain",
|
|
"dapps",
|
|
"ethereum",
|
|
"ipfs",
|
|
"serverless",
|
|
"solc",
|
|
"solidity"
|
|
],
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"license": "MIT",
|
|
"repository": {
|
|
"directory": "packages/embark-debugger",
|
|
"type": "git",
|
|
"url": "https://github.com/embark-framework/embark.git"
|
|
},
|
|
"main": "./dist/index.js",
|
|
"scripts": {
|
|
"build": "cross-env BABEL_ENV=node babel src --extensions \".ts\" --out-dir dist --root-mode upward --source-maps",
|
|
"ci": "npm run qa",
|
|
"clean": "npm run reset",
|
|
"lint": "npm-run-all lint:*",
|
|
"lint:ts": "tslint -c tslint.json \"src/**/*.ts\"",
|
|
"package": "npm pack",
|
|
"qa": "npm-run-all lint typecheck build package",
|
|
"reset": "npx rimraf .nyc_output coverage dist embark-*.tgz package",
|
|
"start": "npm run watch",
|
|
"// test": "nyc --reporter=html --reporter=json mocha \"dist/test/**/*.js\" --exit --no-timeouts --require source-map-support/register",
|
|
"typecheck": "tsc",
|
|
"watch": "run-p watch:*",
|
|
"watch:build": "npm run build -- --verbose --watch",
|
|
"watch:typecheck": "npm run typecheck -- --preserveWatchOutput --watch"
|
|
},
|
|
"dependencies": {
|
|
"@babel/runtime-corejs2": "7.3.1",
|
|
"async": "2.6.1",
|
|
"colors": "1.3.2",
|
|
"embark-i18n": "^4.1.0-beta.1",
|
|
"remix-debug-debugtest": "0.2.16"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/cli": "7.2.3",
|
|
"@babel/core": "7.2.2",
|
|
"cross-env": "5.2.0",
|
|
"mocha": "5.2.0",
|
|
"npm-run-all": "4.1.5",
|
|
"nyc": "13.1.0",
|
|
"rimraf": "2.6.3",
|
|
"source-map-support": "0.5.9",
|
|
"tslint": "5.16.0",
|
|
"typescript": "3.4.5"
|
|
},
|
|
"engines": {
|
|
"node": ">=8.12.0",
|
|
"npm": ">=6.4.1",
|
|
"yarn": ">=1.12.3"
|
|
}
|
|
}
|