mirror of https://github.com/embarklabs/embark.git
73 lines
1.7 KiB
JSON
73 lines
1.7 KiB
JSON
{
|
|
"name": "embark-solidity",
|
|
"version": "6.0.0",
|
|
"author": "Iuri Matias <iuri.matias@gmail.com>",
|
|
"contributors": [],
|
|
"description": "Solidity Compiler APIs for Embark",
|
|
"homepage": "https://github.com/embarklabs/embark/tree/master/packages/plugins/solidity#readme",
|
|
"bugs": "https://github.com/embarklabs/embark/issues",
|
|
"keywords": [
|
|
"blockchain",
|
|
"dapps",
|
|
"ethereum",
|
|
"ipfs",
|
|
"serverless",
|
|
"solc",
|
|
"solidity"
|
|
],
|
|
"files": [
|
|
"dist",
|
|
"index.js"
|
|
],
|
|
"license": "MIT",
|
|
"repository": {
|
|
"directory": "packages/plugins/solidity",
|
|
"type": "git",
|
|
"url": "https://github.com/embarklabs/embark.git"
|
|
},
|
|
"main": "./index.js",
|
|
"types": "./dist/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",
|
|
"reset": "npx rimraf dist embark-*.tgz package",
|
|
"solo": "embark-solo"
|
|
},
|
|
"eslintConfig": {
|
|
"extends": "../../../.eslintrc.json"
|
|
},
|
|
"dependencies": {
|
|
"@babel/runtime-corejs3": "7.8.4",
|
|
"async": "3.2.0",
|
|
"core-js": "3.4.3",
|
|
"embark-core": "^6.0.0",
|
|
"embark-i18n": "^6.0.0",
|
|
"embark-utils": "^6.0.0",
|
|
"find-up": "4.1.0",
|
|
"fs-extra": "8.1.0",
|
|
"lodash.clonedeep": "4.5.0",
|
|
"semver": "5.6.0",
|
|
"solc": "0.6.1",
|
|
"uuid": "3.3.2"
|
|
},
|
|
"devDependencies": {
|
|
"embark-solo": "^6.0.0",
|
|
"eslint": "6.8.0",
|
|
"npm-run-all": "4.1.5",
|
|
"rimraf": "3.0.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=10.17.0",
|
|
"npm": ">=6.11.3",
|
|
"yarn": ">=1.19.1"
|
|
}
|
|
}
|