Merge pull request #578 from 0xProject/document-node-version

Document Node.js version requirement and add it to package.json
This commit is contained in:
Alex Browne 2018-05-15 10:51:49 -07:00 committed by GitHub
commit 0bc338ba42
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
29 changed files with 86 additions and 6 deletions

View File

@ -62,6 +62,8 @@ Dedicated documentation pages:
* [Sol-cov](https://0xproject.com/docs/sol-cov) * [Sol-cov](https://0xproject.com/docs/sol-cov)
* [Standard Relayer API](https://github.com/0xProject/standard-relayer-api/blob/master/README.md) * [Standard Relayer API](https://github.com/0xProject/standard-relayer-api/blob/master/README.md)
Node version >= 6.12 is required.
Most of the packages require additional typings for external dependencies. Most of the packages require additional typings for external dependencies.
You can include those by prepending @0xproject/typescript-typings package to your [`typeRoots`](http://www.typescriptlang.org/docs/handbook/tsconfig-json.html) config. You can include those by prepending @0xproject/typescript-typings package to your [`typeRoots`](http://www.typescriptlang.org/docs/handbook/tsconfig-json.html) config.

View File

@ -1,6 +1,9 @@
{ {
"private": true, "private": true,
"name": "0x-monorepo", "name": "0x-monorepo",
"engines": {
"node" : ">=6.12"
},
"workspaces": [ "workspaces": [
"packages/*" "packages/*"
], ],

View File

@ -1,6 +1,9 @@
{ {
"name": "0x.js", "name": "0x.js",
"version": "0.37.2", "version": "0.37.2",
"engines": {
"node" : ">=6.12"
},
"description": "A javascript library for interacting with the 0x protocol", "description": "A javascript library for interacting with the 0x protocol",
"keywords": [ "keywords": [
"0x.js", "0x.js",
@ -62,9 +65,6 @@
"url": "https://github.com/0xProject/0x-monorepo" "url": "https://github.com/0xProject/0x-monorepo"
}, },
"license": "Apache-2.0", "license": "Apache-2.0",
"engines": {
"node": ">=6.0.0"
},
"devDependencies": { "devDependencies": {
"@0xproject/abi-gen": "^0.2.13", "@0xproject/abi-gen": "^0.2.13",
"@0xproject/sol-compiler": "^0.4.3", "@0xproject/sol-compiler": "^0.4.3",

View File

@ -1,6 +1,9 @@
{ {
"name": "@0xproject/abi-gen", "name": "@0xproject/abi-gen",
"version": "0.2.13", "version": "0.2.13",
"engines": {
"node" : ">=6.12"
},
"description": "Generate contract wrappers from ABI and handlebars templates", "description": "Generate contract wrappers from ABI and handlebars templates",
"main": "lib/index.js", "main": "lib/index.js",
"types": "lib/index.d.ts", "types": "lib/index.d.ts",

View File

@ -1,6 +1,9 @@
{ {
"name": "@0xproject/assert", "name": "@0xproject/assert",
"version": "0.2.9", "version": "0.2.9",
"engines": {
"node" : ">=6.12"
},
"description": "Provides a standard way of performing type and schema validation across 0x projects", "description": "Provides a standard way of performing type and schema validation across 0x projects",
"main": "lib/src/index.js", "main": "lib/src/index.js",
"types": "lib/src/index.d.ts", "types": "lib/src/index.d.ts",

View File

@ -1,6 +1,9 @@
{ {
"name": "@0xproject/base-contract", "name": "@0xproject/base-contract",
"version": "0.3.1", "version": "0.3.1",
"engines": {
"node" : ">=6.12"
},
"description": "0x Base TS contract", "description": "0x Base TS contract",
"main": "lib/src/index.js", "main": "lib/src/index.js",
"types": "lib/src/index.d.ts", "types": "lib/src/index.d.ts",

View File

@ -1,6 +1,9 @@
{ {
"name": "@0xproject/connect", "name": "@0xproject/connect",
"version": "0.6.12", "version": "0.6.12",
"engines": {
"node" : ">=6.12"
},
"description": "A javascript library for interacting with the standard relayer api", "description": "A javascript library for interacting with the standard relayer api",
"keywords": [ "keywords": [
"connect", "connect",
@ -42,9 +45,6 @@
}, },
"author": "Brandon Millman", "author": "Brandon Millman",
"license": "Apache-2.0", "license": "Apache-2.0",
"engines": {
"node": ">=6.0.0"
},
"bugs": { "bugs": {
"url": "https://github.com/0xProject/0x-monorepo/issues" "url": "https://github.com/0xProject/0x-monorepo/issues"
}, },

View File

@ -2,6 +2,9 @@
"private": true, "private": true,
"name": "contracts", "name": "contracts",
"version": "2.1.28", "version": "2.1.28",
"engines": {
"node" : ">=6.12"
},
"description": "Smart contract components of 0x protocol", "description": "Smart contract components of 0x protocol",
"main": "index.js", "main": "index.js",
"directories": { "directories": {

View File

@ -1,6 +1,9 @@
{ {
"name": "@0xproject/dev-utils", "name": "@0xproject/dev-utils",
"version": "0.4.1", "version": "0.4.1",
"engines": {
"node" : ">=6.12"
},
"description": "0x dev TS utils", "description": "0x dev TS utils",
"main": "lib/src/index.js", "main": "lib/src/index.js",
"types": "lib/src/index.d.ts", "types": "lib/src/index.d.ts",

View File

@ -1,6 +1,9 @@
{ {
"name": "@0xproject/json-schemas", "name": "@0xproject/json-schemas",
"version": "0.7.23", "version": "0.7.23",
"engines": {
"node" : ">=6.12"
},
"description": "0x-related json schemas", "description": "0x-related json schemas",
"main": "lib/src/index.js", "main": "lib/src/index.js",
"types": "lib/src/index.d.ts", "types": "lib/src/index.d.ts",

View File

@ -1,6 +1,9 @@
{ {
"name": "@0xproject/metacoin", "name": "@0xproject/metacoin",
"version": "0.0.6", "version": "0.0.6",
"engines": {
"node" : ">=6.12"
},
"private": true, "private": true,
"description": "Example solidity project using 0x dev tools", "description": "Example solidity project using 0x dev tools",
"scripts": { "scripts": {

View File

@ -1,6 +1,9 @@
{ {
"name": "@0xproject/migrations", "name": "@0xproject/migrations",
"version": "0.0.5", "version": "0.0.5",
"engines": {
"node" : ">=6.12"
},
"description": "0x smart contract migrations", "description": "0x smart contract migrations",
"main": "lib/index.js", "main": "lib/index.js",
"types": "lib/index.d.ts", "types": "lib/index.d.ts",

View File

@ -1,6 +1,9 @@
{ {
"name": "@0xproject/monorepo-scripts", "name": "@0xproject/monorepo-scripts",
"version": "0.1.19", "version": "0.1.19",
"engines": {
"node" : ">=6.12"
},
"description": "Helper scripts for the monorepo", "description": "Helper scripts for the monorepo",
"main": "lib/index.js", "main": "lib/index.js",
"types": "lib/index.d.ts", "types": "lib/index.d.ts",

View File

@ -1,6 +1,9 @@
{ {
"name": "@0xproject/order-utils", "name": "@0xproject/order-utils",
"version": "0.0.4", "version": "0.0.4",
"engines": {
"node" : ">=6.12"
},
"description": "0x order utils", "description": "0x order utils",
"main": "lib/src/index.js", "main": "lib/src/index.js",
"types": "lib/src/index.d.ts", "types": "lib/src/index.d.ts",

View File

@ -2,6 +2,9 @@
"private": true, "private": true,
"name": "@0xproject/react-docs-example", "name": "@0xproject/react-docs-example",
"version": "0.0.11", "version": "0.0.11",
"engines": {
"node" : ">=6.12"
},
"description": "An example app using react-docs", "description": "An example app using react-docs",
"scripts": { "scripts": {
"lint": "tslint --project .", "lint": "tslint --project .",

View File

@ -1,6 +1,9 @@
{ {
"name": "@0xproject/react-docs", "name": "@0xproject/react-docs",
"version": "0.0.11", "version": "0.0.11",
"engines": {
"node" : ">=6.12"
},
"description": "React documentation component for rendering TypeDoc & Doxity generated JSON", "description": "React documentation component for rendering TypeDoc & Doxity generated JSON",
"main": "lib/index.js", "main": "lib/index.js",
"types": "lib/index.d.ts", "types": "lib/index.d.ts",

View File

@ -1,6 +1,9 @@
{ {
"name": "@0xproject/react-shared", "name": "@0xproject/react-shared",
"version": "0.1.6", "version": "0.1.6",
"engines": {
"node" : ">=6.12"
},
"description": "0x shared react components", "description": "0x shared react components",
"main": "lib/index.js", "main": "lib/index.js",
"types": "lib/index.d.ts", "types": "lib/index.d.ts",

View File

@ -1,6 +1,9 @@
{ {
"name": "@0xproject/sol-compiler", "name": "@0xproject/sol-compiler",
"version": "0.4.3", "version": "0.4.3",
"engines": {
"node" : ">=6.12"
},
"description": "Solidity compiler wrapper and artifactor", "description": "Solidity compiler wrapper and artifactor",
"main": "lib/src/index.js", "main": "lib/src/index.js",
"types": "lib/src/index.d.ts", "types": "lib/src/index.d.ts",

View File

@ -1,6 +1,9 @@
{ {
"name": "@0xproject/sol-cov", "name": "@0xproject/sol-cov",
"version": "0.0.10", "version": "0.0.10",
"engines": {
"node" : ">=6.12"
},
"description": "Generate coverage reports for Solidity code", "description": "Generate coverage reports for Solidity code",
"main": "lib/src/index.js", "main": "lib/src/index.js",
"types": "lib/src/index.d.ts", "types": "lib/src/index.d.ts",

View File

@ -1,6 +1,9 @@
{ {
"name": "@0xproject/sol-resolver", "name": "@0xproject/sol-resolver",
"version": "0.0.4", "version": "0.0.4",
"engines": {
"node" : ">=6.12"
},
"description": "Import resolver for smart contracts dependencies", "description": "Import resolver for smart contracts dependencies",
"main": "lib/index.js", "main": "lib/index.js",
"types": "lib/index.d.ts", "types": "lib/index.d.ts",

View File

@ -1,6 +1,9 @@
{ {
"name": "@0xproject/sra-report", "name": "@0xproject/sra-report",
"version": "0.0.14", "version": "0.0.14",
"engines": {
"node" : ">=6.12"
},
"description": "Generate reports for standard relayer API compliance", "description": "Generate reports for standard relayer API compliance",
"main": "lib/src/index.js", "main": "lib/src/index.js",
"types": "lib/src/index.d.ts", "types": "lib/src/index.d.ts",

View File

@ -1,6 +1,9 @@
{ {
"name": "@0xproject/subproviders", "name": "@0xproject/subproviders",
"version": "0.10.1", "version": "0.10.1",
"engines": {
"node" : ">=6.12"
},
"main": "lib/src/index.js", "main": "lib/src/index.js",
"types": "lib/src/index.d.ts", "types": "lib/src/index.d.ts",
"license": "Apache-2.0", "license": "Apache-2.0",

View File

@ -2,6 +2,9 @@
"private": true, "private": true,
"name": "@0xproject/testnet-faucets", "name": "@0xproject/testnet-faucets",
"version": "1.0.29", "version": "1.0.29",
"engines": {
"node" : ">=6.12"
},
"description": "A faucet micro-service that dispenses test ERC20 tokens or Ether", "description": "A faucet micro-service that dispenses test ERC20 tokens or Ether",
"main": "server.js", "main": "server.js",
"scripts": { "scripts": {

View File

@ -1,6 +1,9 @@
{ {
"name": "@0xproject/tslint-config", "name": "@0xproject/tslint-config",
"version": "0.4.17", "version": "0.4.17",
"engines": {
"node" : ">=6.12"
},
"description": "Lint rules related to 0xProject for TSLint", "description": "Lint rules related to 0xProject for TSLint",
"main": "tslint.json", "main": "tslint.json",
"scripts": { "scripts": {

View File

@ -1,6 +1,9 @@
{ {
"name": "@0xproject/types", "name": "@0xproject/types",
"version": "0.6.3", "version": "0.6.3",
"engines": {
"node" : ">=6.12"
},
"description": "0x types", "description": "0x types",
"main": "lib/index.js", "main": "lib/index.js",
"types": "lib/index.d.ts", "types": "lib/index.d.ts",

View File

@ -1,6 +1,9 @@
{ {
"name": "@0xproject/typescript-typings", "name": "@0xproject/typescript-typings",
"version": "0.3.1", "version": "0.3.1",
"engines": {
"node" : ">=6.12"
},
"description": "0x project typescript type definitions", "description": "0x project typescript type definitions",
"scripts": { "scripts": {
"watch": "tsc -w", "watch": "tsc -w",

View File

@ -1,6 +1,9 @@
{ {
"name": "@0xproject/utils", "name": "@0xproject/utils",
"version": "0.6.1", "version": "0.6.1",
"engines": {
"node" : ">=6.12"
},
"description": "0x TS utils", "description": "0x TS utils",
"main": "lib/index.js", "main": "lib/index.js",
"types": "lib/index.d.ts", "types": "lib/index.d.ts",

View File

@ -1,6 +1,9 @@
{ {
"name": "@0xproject/web3-wrapper", "name": "@0xproject/web3-wrapper",
"version": "0.6.3", "version": "0.6.3",
"engines": {
"node" : ">=6.12"
},
"description": "Wraps around web3 and gives a nicer interface", "description": "Wraps around web3 and gives a nicer interface",
"main": "lib/src/index.js", "main": "lib/src/index.js",
"types": "lib/src/index.d.ts", "types": "lib/src/index.d.ts",

View File

@ -1,6 +1,9 @@
{ {
"name": "@0xproject/website", "name": "@0xproject/website",
"version": "0.0.32", "version": "0.0.32",
"engines": {
"node" : ">=6.12"
},
"private": true, "private": true,
"description": "Website and 0x portal dapp", "description": "Website and 0x portal dapp",
"scripts": { "scripts": {