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

84 lines
2.2 KiB
JSON

{
"name": "embark-test-runner",
"version": "5.1.0-nightly.0",
"author": "Iuri Matias <iuri.matias@gmail.com>",
"contributors": [],
"description": "Embark Testrunner",
"homepage": "https://github.com/embarklabs/embark/tree/master/packages/stack/test-runner#readme",
"bugs": "https://github.com/embarklabs/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/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": "eslint src/",
"qa": "npm-run-all lint _typecheck _build test",
"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-corejs3": "7.7.4",
"async": "2.6.1",
"chalk": "2.4.2",
"core-js": "3.4.3",
"deep-equal": "1.0.1",
"embark-i18n": "^5.1.0-nightly.0",
"embark-testing": "^5.1.0-nightly.0",
"embark-utils": "^5.1.0-nightly.0",
"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.2",
"open": "6.4.0",
"web3": "1.2.4"
},
"devDependencies": {
"embark-solo": "^5.1.0-nightly.0",
"eslint": "5.7.0",
"mocha": "6.2.2",
"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",
"npm": ">=6.11.3",
"yarn": ">=1.19.1"
}
}