embark/packages/stack/contracts-manager/package.json

93 lines
2.2 KiB
JSON

{
"name": "embark-contracts-manager",
"version": "5.3.0-nightly.9",
"author": "Iuri Matias <iuri.matias@gmail.com>",
"contributors": [],
"description": "Smart contracts manager for Embark",
"homepage": "https://github.com/embarklabs/embark/tree/master/packages/stack/contracts-manager#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/stack/contracts-manager",
"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": "npm-run-all lint:*",
"lint:js": "eslint src/",
"lint:ts": "tslint -c tslint.json \"src/**/*.ts\"",
"qa": "npm-run-all lint _typecheck _build",
"reset": "npx rimraf dist embark-*.tgz package",
"solo": "embark-solo",
"test": "jest"
},
"eslintConfig": {
"extends": "../../../.eslintrc.json"
},
"dependencies": {
"@babel/runtime-corejs3": "7.8.4",
"async": "3.2.0",
"core-js": "3.6.4",
"embark-core": "^5.3.0-nightly.9",
"embark-i18n": "^5.3.0-nightly.5",
"embark-logger": "^5.3.0-nightly.6",
"embark-utils": "^5.3.0-nightly.7",
"web3": "1.2.6",
"web3-utils": "1.2.6"
},
"devDependencies": {
"babel-jest": "24.9.0",
"embark-solo": "^5.2.3",
"embark-testing": "^5.3.0-nightly.6",
"eslint": "6.8.0",
"jest": "24.9.0",
"npm-run-all": "4.1.5",
"rimraf": "3.0.0",
"tslint": "5.20.1",
"typescript": "3.7.2"
},
"engines": {
"node": ">=10.17.0",
"npm": ">=6.11.3",
"yarn": ">=1.19.1"
},
"jest": {
"collectCoverage": true,
"testEnvironment": "node",
"testMatch": [
"**/test/**/*.js"
],
"transform": {
"\\.(js|ts)$": [
"babel-jest",
{
"rootMode": "upward"
}
]
}
}
}