mirror of https://github.com/embarklabs/embark.git
77 lines
2.0 KiB
JSON
77 lines
2.0 KiB
JSON
{
|
|
"name": "embark-solidity-tests",
|
|
"version": "5.1.0-nightly.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"
|
|
],
|
|
"main": "./dist/lib/index.js",
|
|
"types": "./dist/lib/index.d.ts",
|
|
"embark-collective": {
|
|
"build:node": true,
|
|
"typecheck": {
|
|
"compilerOptions": {
|
|
"skipLibCheck": 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": {
|
|
"extends": "../../../.eslintrc.json"
|
|
},
|
|
"dependencies": {
|
|
"@babel/runtime-corejs3": "7.7.4",
|
|
"@types/async": "3.0.3",
|
|
"async": "3.1.0",
|
|
"core-js": "3.4.3",
|
|
"embark-utils": "^5.1.0-nightly.0",
|
|
"remix-tests": "0.1.24",
|
|
"web3": "1.2.4",
|
|
"yo-yoify": "4.3.0"
|
|
},
|
|
"devDependencies": {
|
|
"embark-solo": "^5.1.0-nightly.0",
|
|
"embark-utils": "^5.0.0-alpha.4",
|
|
"eslint": "5.7.0",
|
|
"mocha": "6.2.2",
|
|
"npm-run-all": "4.1.5",
|
|
"nyc": "13.1.0",
|
|
"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"
|
|
}
|
|
}
|