embark/packages/plugins/solidity-tests/package.json

77 lines
1.9 KiB
JSON

{
"name": "embark-solidity-tests",
"version": "6.0.0",
"description": "Plugin to run Embark solidity tests",
"homepage": "https://github.com/embarklabs/embark/tree/master/packages/plugins/solidity-tests#readme",
"repository": {
"directory": "packages/plugins/solidity-tests",
"type": "git",
"url": "https://github.com/embarklabs/embark/"
},
"author": "Iuri Matias <iuri.matias@gmail.com>",
"license": "MIT",
"bugs": "https://github.com/embarklabs/embark/issues",
"keywords": [
"blockchain",
"dapps",
"ethereum",
"ipfs",
"serverless",
"solc",
"solidity"
],
"files": [
"dist",
"index.js"
],
"main": "./index.js",
"types": "./dist/lib/index.d.ts",
"embark-collective": {
"build:node": true,
"typecheck": {
"include": [
"src/lib/**/*"
]
}
},
"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": {
"extends": "../../../.eslintrc.json"
},
"dependencies": {
"@babel/runtime-corejs3": "7.8.4",
"@types/async": "3.0.3",
"async": "3.2.0",
"core-js": "3.4.3",
"embark-utils": "^6.0.0",
"remix-tests": "0.1.24",
"web3": "1.2.6",
"yo-yoify": "4.3.0"
},
"devDependencies": {
"embark-solo": "^6.0.0",
"eslint": "6.8.0",
"mocha": "7.1.0",
"npm-run-all": "4.1.5",
"nyc": "13.1.0",
"rimraf": "3.0.0",
"sinon": "7.4.2",
"source-map-support": "0.5.16"
},
"engines": {
"node": ">=10.17.0",
"npm": ">=6.11.3",
"yarn": ">=1.19.1"
}
}