embark/packages/stack/test-runner/package.json

80 lines
2.0 KiB
JSON
Raw Normal View History

{
"name": "embark-test-runner",
2019-08-28 19:52:21 +00:00
"version": "4.1.1",
"author": "Iuri Matias <iuri.matias@gmail.com>",
"contributors": [],
"description": "Embark Testrunner",
"homepage": "https://github.com/embark-framework/embark/tree/master/packages/stack/test-runner#readme",
"bugs": "https://github.com/embark-framework/embark/issues",
"keywords": [
"blockchain",
"dapps",
"ethereum",
"ipfs",
"serverless",
"solc",
"solidity"
],
"files": [
"dist"
],
"license": "MIT",
"repository": {
"directory": "packages/stack/test-runner",
"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": "eslint src/",
"qa": "npm-run-all lint _build",
"reset": "npx rimraf .nyc_output 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": {
"env": {
"mocha": true
},
"extends": "../../../.eslintrc.json"
},
"dependencies": {
"@babel/runtime-corejs2": "7.6.2",
"async": "2.6.1",
"chalk": "2.4.2",
2019-08-28 19:52:21 +00:00
"embark-i18n": "^4.1.1",
"embark-testing": "^4.1.1",
2019-08-28 19:52:21 +00:00
"embark-utils": "^4.1.1",
"fs-extra": "8.1.0",
"istanbul-lib-coverage": "2.0.5",
"istanbul-lib-report": "2.0.8",
"istanbul-reports": "2.2.4",
"mocha": "6.2.0",
"open": "6.4.0",
"web3": "1.2.1"
},
"devDependencies": {
"@types/async": "2.0.50",
"embark-solo": "^4.1.1",
"eslint": "5.7.0",
"mocha": "6.2.0",
"npm-run-all": "4.1.5",
"nyc": "13.1.0",
"refute": "1.0.2",
"rimraf": "3.0.0",
"sinon": "7.4.2",
"source-map-support": "0.5.13"
},
"engines": {
"node": ">=10.17.0 <12.0.0",
"npm": ">=6.11.3",
"yarn": ">=1.19.1"
}
}