2019-05-10 10:52:34 +00:00
|
|
|
{
|
|
|
|
"name": "embark-solidity",
|
2019-08-28 19:52:21 +00:00
|
|
|
"version": "4.1.1",
|
2019-05-10 10:52:34 +00:00
|
|
|
"author": "Iuri Matias <iuri.matias@gmail.com>",
|
|
|
|
"contributors": [],
|
|
|
|
"description": "Solidity Compiler APIs for Embark",
|
|
|
|
"homepage": "https://github.com/embark-framework/embark/tree/master/packages/embark-solidity#readme",
|
|
|
|
"bugs": "https://github.com/embark-framework/embark/issues",
|
|
|
|
"keywords": [
|
|
|
|
"blockchain",
|
|
|
|
"dapps",
|
|
|
|
"ethereum",
|
|
|
|
"ipfs",
|
|
|
|
"serverless",
|
|
|
|
"solc",
|
|
|
|
"solidity"
|
|
|
|
],
|
|
|
|
"files": [
|
|
|
|
"dist"
|
|
|
|
],
|
|
|
|
"license": "MIT",
|
|
|
|
"repository": {
|
|
|
|
"directory": "packages/embark-solidity",
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/embark-framework/embark.git"
|
|
|
|
},
|
|
|
|
"main": "./dist/index.js",
|
|
|
|
"scripts": {
|
|
|
|
"build": "cross-env BABEL_ENV=node babel src --extensions \".js\" --out-dir dist --root-mode upward --source-maps",
|
|
|
|
"ci": "npm run qa",
|
|
|
|
"clean": "npm run reset",
|
|
|
|
"lint": "npm-run-all lint:*",
|
|
|
|
"lint:js": "eslint src/",
|
|
|
|
"// lint:ts": "tslint -c tslint.json \"src/**/*.ts\"",
|
|
|
|
"package": "npm pack",
|
|
|
|
"// qa": "npm-run-all lint typecheck build package",
|
|
|
|
"qa": "npm-run-all lint build package",
|
|
|
|
"reset": "npx rimraf dist embark-*.tgz package",
|
|
|
|
"start": "npm run watch",
|
|
|
|
"// typecheck": "tsc",
|
|
|
|
"watch": "run-p watch:*",
|
|
|
|
"watch:build": "npm run build -- --verbose --watch",
|
|
|
|
"// watch:typecheck": "npm run typecheck -- --preserveWatchOutput --watch"
|
|
|
|
},
|
|
|
|
"eslintConfig": {
|
2019-09-06 22:26:08 +00:00
|
|
|
"extends": "../../../.eslintrc.json"
|
2019-05-10 10:52:34 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"@babel/runtime-corejs2": "7.3.1",
|
|
|
|
"async": "2.6.1",
|
2019-08-28 19:52:21 +00:00
|
|
|
"embark-core": "^4.1.1",
|
|
|
|
"embark-i18n": "^4.1.1",
|
|
|
|
"embark-utils": "^4.1.1",
|
2019-05-10 10:52:34 +00:00
|
|
|
"fs-extra": "7.0.1",
|
|
|
|
"semver": "5.6.0",
|
|
|
|
"solc": "0.5.0",
|
|
|
|
"uuid": "3.3.2"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"@babel/cli": "7.2.3",
|
|
|
|
"@babel/core": "7.2.2",
|
|
|
|
"cross-env": "5.2.0",
|
|
|
|
"eslint": "5.7.0",
|
|
|
|
"npm-run-all": "4.1.5",
|
2019-08-20 08:23:05 +00:00
|
|
|
"rimraf": "3.0.0",
|
2019-05-10 10:52:34 +00:00
|
|
|
"tslint": "5.16.0",
|
|
|
|
"typescript": "3.4.5"
|
|
|
|
},
|
|
|
|
"engines": {
|
2019-05-24 22:17:16 +00:00
|
|
|
"node": ">=8.12.0 <12.0.0",
|
2019-05-10 10:52:34 +00:00
|
|
|
"npm": ">=6.4.1",
|
|
|
|
"yarn": ">=1.12.3"
|
|
|
|
}
|
|
|
|
}
|