mirror of https://github.com/embarklabs/embark.git
67 lines
1.7 KiB
JSON
67 lines
1.7 KiB
JSON
{
|
|
"name": "embark-solidity-tests",
|
|
"version": "5.0.0-alpha.2",
|
|
"description": "Plugin to run Embark solidity tests",
|
|
"main": "dist/lib/index.js",
|
|
"homepage": "https://github.com/embark-framework/embark/tree/master/packages/plugins/solidity-tests#readme",
|
|
"repository": {
|
|
"directory": "packages/plugins/solidity-tests",
|
|
"type": "git",
|
|
"url": "https://github.com/embark-framework/embark/"
|
|
},
|
|
"author": "Iuri Matias <iuri.matias@gmail.com>",
|
|
"license": "MIT",
|
|
"bugs": "https://github.com/embark-framework/embark/issues",
|
|
"keywords": [
|
|
"blockchain",
|
|
"dapps",
|
|
"ethereum",
|
|
"ipfs",
|
|
"serverless",
|
|
"solc",
|
|
"solidity"
|
|
],
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"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": {
|
|
"extends": "../../../.eslintrc.json"
|
|
},
|
|
"dependencies": {
|
|
"@babel/runtime-corejs3": "7.7.4",
|
|
"async": "3.1.0",
|
|
"core-js": "3.4.3",
|
|
"remix-tests": "0.1.20",
|
|
"web3": "1.2.1",
|
|
"yo-yoify": "4.3.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/async": "3.0.3",
|
|
"embark-solo": "^5.0.0-alpha.2",
|
|
"eslint": "5.7.0",
|
|
"mocha": "6.2.2",
|
|
"npm-run-all": "4.1.5",
|
|
"nyc": "13.1.0",
|
|
"rimraf": "3.0.0",
|
|
"source-map-support": "0.5.13"
|
|
},
|
|
"engines": {
|
|
"node": ">=10.17.0 <12.0.0",
|
|
"npm": ">=6.11.3",
|
|
"yarn": ">=1.19.1"
|
|
}
|
|
}
|