mirror of
https://github.com/embarklabs/embark.git
synced 2025-02-03 09:24:25 +00:00
5418f16082
Make changes by running these commands in the root of the monorepo: **bugs** ```shell npx lerna exec --concurrency 1 --stream -- \ 'DIRPATH=$(realpath $PWD --relative-to=$LERNA_ROOT_PATH); \ npx json -I -f package.json -e "this.bugs=\ \"https://github.com/embark-framework/embark/issues\""' ``` **homepage** ```shell npx lerna exec --concurrency 1 --stream -- \ 'DIRPATH=$(realpath $PWD --relative-to=$LERNA_ROOT_PATH); \ npx json -I -f package.json -e "this.homepage=\ \"https://github.com/embark-framework/embark/tree/master/${DIRPATH}#readme\""' ``` Don't commit changes to private packages, with the exceptions of embark-typings and embark-reset because those may switch from private to public, and also because the latter will be included in `node_modules` of embark even if it is private since embark-reset is presently a bundled dependency of embark. Don't include the homepage and bugs fields in dapps generated from the template packages, except for the demo. Set those dapps' description field to an empty string. Ensure every package (inc. private packages) has a description. Ensure every package (inc. private packages) has a README that begins with: ```markdown `[pkgJson.name]` ================ > [pkgJson.description] Visit [embark.status.im](https://embark.status.im/) to get started with [Embark](https://github.com/embark-framework/embark). ``` Don't include the README in dapps generated from the template packages, except for the demo.
75 lines
2.2 KiB
JSON
75 lines
2.2 KiB
JSON
{
|
|
"name": "embarkjs",
|
|
"version": "4.0.0-beta.0",
|
|
"author": "Iuri Matias <iuri.matias@gmail.com>",
|
|
"contributors": [],
|
|
"description": "JavaScript library for easily interacting with web3 technologies",
|
|
"homepage": "https://github.com/embark-framework/embark/tree/master/packages/embarkjs#readme",
|
|
"bugs": "https://github.com/embark-framework/embark/issues",
|
|
"keywords": [
|
|
"blockchain",
|
|
"dapps",
|
|
"ethereum",
|
|
"ipfs",
|
|
"serverless",
|
|
"solc",
|
|
"solidity"
|
|
],
|
|
"license": "MIT",
|
|
"repository": {
|
|
"directory": "packages/embarkjs",
|
|
"type": "git",
|
|
"url": "https://github.com/embark-framework/embark.git"
|
|
},
|
|
"main": "dist/node/index.js",
|
|
"browser": {
|
|
"./dist/node/index.js": "./dist/browser/index.js"
|
|
},
|
|
"browserslist": [
|
|
"last 1 version",
|
|
"not dead",
|
|
"> 0.2%"
|
|
],
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"build": "npm-run-all build:**",
|
|
"build:browser": "cross-env BABEL_ENV=browser babel src --out-dir dist/browser --root-mode upward",
|
|
"build:node": "cross-env BABEL_ENV=node babel src --out-dir dist --root-mode upward --source-maps",
|
|
"build:node:async": "cross-env BABEL_ENV=node:async babel src/node --out-dir dist --root-mode upward --source-maps",
|
|
"build:node:test": "cross-env BABEL_ENV=node:test babel test --out-dir build-test --root-mode upward --source-maps",
|
|
"ci": "npm run qa",
|
|
"clean": "npm run reset",
|
|
"package": "npm pack",
|
|
"qa": "npm-run-all build test package",
|
|
"reset": "npx rimraf build-test dist embarkjs-*.tgz package",
|
|
"start": "npm run watch",
|
|
"test": "mocha \"build-test/**/*.js\" --exit --no-timeouts --require source-map-support/register",
|
|
"watch": "run-p \"build:** -- --verbose --watch\""
|
|
},
|
|
"dependencies": {
|
|
"@babel/runtime-corejs2": "7.3.1",
|
|
"async": "2.6.1",
|
|
"async-es": "2.6.1"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/cli": "7.2.3",
|
|
"@babel/core": "7.2.2",
|
|
"ajv": "6.5.2",
|
|
"chai": "4.2.0",
|
|
"cross-env": "5.2.0",
|
|
"lodash.clonedeep": "4.5.0",
|
|
"mocha": "5.2.0",
|
|
"npm-run-all": "4.1.5",
|
|
"rimraf": "2.6.3",
|
|
"source-map-support": "0.5.9",
|
|
"web3": "1.0.0-beta.37"
|
|
},
|
|
"engines": {
|
|
"node": ">=8.12.0",
|
|
"npm": ">=6.4.1",
|
|
"yarn": ">=1.12.3"
|
|
}
|
|
}
|