mirror of https://github.com/embarklabs/embark.git
104 lines
2.3 KiB
JSON
104 lines
2.3 KiB
JSON
{
|
|
"name": "embark-ens",
|
|
"version": "6.0.0",
|
|
"author": "Iuri Matias <iuri.matias@gmail.com>",
|
|
"contributors": [],
|
|
"description": "Implements ENS support in Embark",
|
|
"homepage": "https://github.com/embarklabs/embark/tree/master/packages/plugins/ens#readme",
|
|
"bugs": "https://github.com/embarklabs/embark/issues",
|
|
"keywords": [
|
|
"blockchain",
|
|
"dapps",
|
|
"ethereum",
|
|
"ipfs",
|
|
"serverless",
|
|
"solc",
|
|
"solidity",
|
|
"ens"
|
|
],
|
|
"files": [
|
|
"dist",
|
|
"index.js"
|
|
],
|
|
"license": "MIT",
|
|
"repository": {
|
|
"directory": "packages/plugins/ens",
|
|
"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/ test/",
|
|
"qa": "npm-run-all lint _typecheck _build test",
|
|
"reset": "npx rimraf dist embark-*.tgz package",
|
|
"solo": "embark-solo",
|
|
"test": "jest"
|
|
},
|
|
"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",
|
|
"embarkjs": "^6.0.0",
|
|
"embarkjs-ens": "^6.0.0",
|
|
"eth-ens-namehash": "2.0.8",
|
|
"lodash.clonedeep": "4.5.0",
|
|
"web3": "1.2.6"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "7.8.6",
|
|
"babel-eslint": "10.0.3",
|
|
"babel-jest": "24.9.0",
|
|
"embark-solo": "^6.0.0",
|
|
"embark-testing": "^6.0.0",
|
|
"eslint": "6.8.0",
|
|
"eslint-plugin-jest": "23.8.1",
|
|
"jest": "25.1.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"
|
|
],
|
|
"transform": {
|
|
"\\.js$": [
|
|
"babel-jest",
|
|
{
|
|
"rootMode": "upward"
|
|
}
|
|
]
|
|
}
|
|
},
|
|
"engines": {
|
|
"node": ">=10.17.0",
|
|
"npm": ">=6.11.3",
|
|
"yarn": ">=1.19.1"
|
|
}
|
|
}
|