embark/packages/plugins/coverage/package.json

81 lines
2.2 KiB
JSON

{
"name": "embark-coverage",
"version": "5.0.0-alpha.3",
"author": "Iuri Matias <iuri.matias@gmail.com>",
"contributors": [],
"description": "Code coverage capabilities for Embark",
"homepage": "https://github.com/embark-framework/embark/tree/master/packages/plugins/coverage#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/coverage",
"type": "git",
"url": "https://github.com/embark-framework/embark.git"
},
"main": "./dist/lib/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",
"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:typecheck": "npm run typecheck -- --preserveWatchOutput --watch"
},
"dependencies": {
"@babel/runtime-corejs3": "7.7.4",
"core-js": "3.4.3",
"embark-core": "^5.0.0-alpha.3",
"embark-utils": "^5.0.0-alpha.2",
"fs-extra": "8.1.0",
"globule": "1.2.1",
"prettier-plugin-solidity": "1.0.0-alpha.25",
"semver": "5.6.0",
"solidity-parser-antlr": "0.4.5",
"web3-eth-contract": "1.2.1"
},
"devDependencies": {
"@babel/cli": "7.7.4",
"@babel/core": "7.7.4",
"@types/fs-extra": "7.0.0",
"@types/globule": "1.1.3",
"@types/mocha": "5.2.7",
"@types/prettier": "1.16.4",
"@types/semver": "5.5.0",
"@types/web3": "1.0.12",
"cross-env": "5.2.0",
"embark-solo": "^5.0.0-alpha.2",
"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"
}
}