2019-04-29 14:22:48 +00:00
|
|
|
{
|
|
|
|
"name": "embark-ens",
|
2019-08-28 19:52:21 +00:00
|
|
|
"version": "4.1.1",
|
2019-04-29 14:22:48 +00:00
|
|
|
"author": "Iuri Matias <iuri.matias@gmail.com>",
|
|
|
|
"contributors": [],
|
|
|
|
"description": "Implements ENS support in Embark",
|
2019-09-27 17:58:08 +00:00
|
|
|
"homepage": "https://github.com/embark-framework/embark/tree/master/packages/plugins/ens#readme",
|
2019-04-29 14:22:48 +00:00
|
|
|
"bugs": "https://github.com/embark-framework/embark/issues",
|
|
|
|
"keywords": [
|
|
|
|
"blockchain",
|
|
|
|
"dapps",
|
|
|
|
"ethereum",
|
|
|
|
"ipfs",
|
|
|
|
"serverless",
|
|
|
|
"solc",
|
|
|
|
"solidity",
|
|
|
|
"ens"
|
|
|
|
],
|
|
|
|
"files": [
|
|
|
|
"dist"
|
|
|
|
],
|
|
|
|
"license": "MIT",
|
|
|
|
"repository": {
|
2019-09-27 17:58:08 +00:00
|
|
|
"directory": "packages/plugins/ens",
|
2019-04-29 14:22:48 +00:00
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/embark-framework/embark.git"
|
|
|
|
},
|
|
|
|
"main": "./dist/index.js",
|
2019-09-18 19:30:41 +00:00
|
|
|
"embark-collective": {
|
|
|
|
"build:node": true
|
|
|
|
},
|
2019-04-29 14:22:48 +00:00
|
|
|
"scripts": {
|
2019-09-18 19:30:41 +00:00
|
|
|
"_build": "npm run solo -- build",
|
2019-04-29 14:22:48 +00:00
|
|
|
"ci": "npm run qa",
|
|
|
|
"clean": "npm run reset",
|
2019-09-18 19:30:41 +00:00
|
|
|
"lint": "eslint src/",
|
|
|
|
"qa": "npm-run-all lint _build",
|
2019-04-29 14:22:48 +00:00
|
|
|
"reset": "npx rimraf dist embark-*.tgz package",
|
2019-10-12 02:42:16 +00:00
|
|
|
"solo": "embark-solo",
|
|
|
|
"test": "jest"
|
2019-04-29 14:22:48 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2019-09-18 19:30:41 +00:00
|
|
|
"@babel/runtime-corejs2": "7.6.2",
|
2019-07-05 17:17:28 +00:00
|
|
|
"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",
|
2019-08-30 20:50:20 +00:00
|
|
|
"eth-ens-namehash": "2.0.8",
|
|
|
|
"web3": "1.2.1"
|
2019-04-29 14:22:48 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2019-09-18 19:30:41 +00:00
|
|
|
"embark-solo": "^4.1.1",
|
2019-10-12 02:42:16 +00:00
|
|
|
"babel-eslint": "10.0.3",
|
|
|
|
"babel-jest": "24.9.0",
|
2019-04-29 14:22:48 +00:00
|
|
|
"eslint": "5.7.0",
|
2019-10-12 02:42:16 +00:00
|
|
|
"eslint-plugin-jest": "22.5.1",
|
|
|
|
"jest": "24.9.0",
|
2019-04-29 14:22:48 +00:00
|
|
|
"npm-run-all": "4.1.5",
|
2019-09-18 19:30:41 +00:00
|
|
|
"rimraf": "3.0.0"
|
2019-04-29 14:22:48 +00:00
|
|
|
},
|
2019-10-12 02:42:16 +00:00
|
|
|
"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"
|
|
|
|
]
|
|
|
|
},
|
2019-04-29 14:22:48 +00:00
|
|
|
"engines": {
|
2019-05-24 22:17:16 +00:00
|
|
|
"node": ">=8.12.0 <12.0.0",
|
2019-04-29 14:22:48 +00:00
|
|
|
"npm": ">=6.4.1",
|
|
|
|
"yarn": ">=1.12.3"
|
|
|
|
}
|
|
|
|
}
|