embark/packages/plugins/ens/package.json

88 lines
2.0 KiB
JSON
Raw Normal View History

{
"name": "embark-ens",
2019-08-28 19:52:21 +00:00
"version": "4.1.1",
"author": "Iuri Matias <iuri.matias@gmail.com>",
"contributors": [],
"description": "Implements ENS support in Embark",
"homepage": "https://github.com/embark-framework/embark/tree/master/packages/plugins/ens#readme",
"bugs": "https://github.com/embark-framework/embark/issues",
"keywords": [
"blockchain",
"dapps",
"ethereum",
"ipfs",
"serverless",
"solc",
"solidity",
"ens"
],
"files": [
"dist"
],
"license": "MIT",
"repository": {
"directory": "packages/plugins/ens",
"type": "git",
"url": "https://github.com/embark-framework/embark.git"
},
"main": "./dist/index.js",
"embark-collective": {
"build:node": true
},
"scripts": {
"_build": "npm run solo -- build",
"ci": "npm run qa",
"clean": "npm run reset",
"lint": "eslint src/",
"qa": "npm-run-all lint _build",
"reset": "npx rimraf dist embark-*.tgz package",
"solo": "embark-solo",
"test": "jest"
},
"dependencies": {
"@babel/runtime-corejs2": "7.6.2",
"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",
"embarkjs": "^4.1.1",
"embarkjs-ens": "^4.1.1",
"eth-ens-namehash": "2.0.8",
"web3": "1.2.1"
},
"devDependencies": {
"embark-solo": "^4.1.1",
"babel-eslint": "10.0.3",
"babel-jest": "24.9.0",
"eslint": "5.7.0",
"eslint-plugin-jest": "22.5.1",
"jest": "24.9.0",
"npm-run-all": "4.1.5",
"rimraf": "3.0.0"
},
"eslintConfig": {
"env": {
"es6": true,
"node": true
},
"extends": [
"eslint:recommended",
"plugin:jest/recommended",
"plugin:jest/style"
],
"parser": "babel-eslint"
},
"jest": {
"collectCoverage": true,
"testEnvironment": "node",
"testMatch": [
"**/test/**/*.js"
]
},
"engines": {
"node": ">=8.12.0 <12.0.0",
"npm": ">=6.4.1",
"yarn": ">=1.12.3"
}
}