embark/packages/plugins/coverage/package.json

81 lines
2.2 KiB
JSON

{
"name": "embark-coverage",
"version": "5.1.0-nightly.1",
"author": "Iuri Matias <iuri.matias@gmail.com>",
"contributors": [],
"description": "Code coverage capabilities for Embark",
"homepage": "https://github.com/embarklabs/embark/tree/master/packages/plugins/coverage#readme",
"bugs": "https://github.com/embarklabs/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/embarklabs/embark.git"
},
"main": "./dist/lib/index.js",
"types": "./dist/lib/index.d.ts",
"embark-collective": {
"build:node": true,
"typecheck": true
},
"scripts": {
"_build": "npm run solo -- build",
"_typecheck": "npm run solo -- typecheck",
"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 test",
"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"
},
"dependencies": {
"@babel/runtime-corejs3": "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",
"core-js": "3.4.3",
"embark-core": "^5.1.0-nightly.1",
"embark-utils": "^5.1.0-nightly.1",
"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-core": "1.2.4",
"web3-eth-contract": "1.2.4"
},
"devDependencies": {
"@babel/cli": "7.7.4",
"@babel/core": "7.7.4",
"cross-env": "5.2.0",
"embark-solo": "^5.1.0-nightly.1",
"eslint": "5.7.0",
"mocha": "6.2.2",
"npm-run-all": "4.1.5",
"rimraf": "3.0.0",
"tslint": "5.20.1",
"typescript": "3.7.2"
},
"engines": {
"node": ">=10.17.0",
"npm": ">=6.11.3",
"yarn": ">=1.19.1"
}
}