From ce7c74cc4117e03627974f2f283103f5261e5152 Mon Sep 17 00:00:00 2001 From: stdlib-bot Date: Sun, 27 Jun 2021 23:55:18 +0000 Subject: [PATCH] Auto-generated commit --- .github/workflows/benchmark.yml | 21 ++ .github/workflows/cancel.yml | 26 ++- .github/workflows/close_pull_requests.yml | 21 ++ .github/workflows/examples.yml | 21 ++ .github/workflows/publish.yml | 35 +++ .github/workflows/test.yml | 35 ++- .github/workflows/test_coverage.yml | 43 +++- .github/workflows/test_install.yml | 28 ++- Makefile | 18 +- README.md | 9 +- is-node-transform-stream-like/lib/main.js | 5 +- is-prng-like/docs/types/tsconfig.json | 39 ---- is-prng-like/docs/types/tslint.json | 252 ---------------------- package.json | 2 +- 14 files changed, 237 insertions(+), 318 deletions(-) delete mode 100644 is-prng-like/docs/types/tsconfig.json delete mode 100644 is-prng-like/docs/types/tslint.json diff --git a/.github/workflows/benchmark.yml b/.github/workflows/benchmark.yml index e51e34ea..dda052a5 100644 --- a/.github/workflows/benchmark.yml +++ b/.github/workflows/benchmark.yml @@ -1,8 +1,29 @@ +#/ +# @license Apache-2.0 +# +# Copyright (c) 2021 The Stdlib Authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +#/ + +# Workflow name: name: benchmark +# Workflow triggers: on: workflow_dispatch: +# Workflow jobs: jobs: benchmark: runs-on: ubuntu-latest diff --git a/.github/workflows/cancel.yml b/.github/workflows/cancel.yml index 0b341b65..11e08932 100644 --- a/.github/workflows/cancel.yml +++ b/.github/workflows/cancel.yml @@ -1,7 +1,29 @@ -name: Cancel Previous Runs +#/ +# @license Apache-2.0 +# +# Copyright (c) 2021 The Stdlib Authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +#/ -on: push +# Workflow name: +name: Cancel Workflow Runs +# Workflow triggers: +on: + workflow_dispatch: + +# Workflow jobs: jobs: cancel: runs-on: ubuntu-latest diff --git a/.github/workflows/close_pull_requests.yml b/.github/workflows/close_pull_requests.yml index fba613f0..625ce14a 100644 --- a/.github/workflows/close_pull_requests.yml +++ b/.github/workflows/close_pull_requests.yml @@ -1,9 +1,30 @@ +#/ +# @license Apache-2.0 +# +# Copyright (c) 2021 The Stdlib Authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +#/ + +# Workflow name: name: Close Pull Requests +# Workflow triggers: on: pull_request_target: types: [opened] +# Workflow jobs: jobs: run: runs-on: ubuntu-latest diff --git a/.github/workflows/examples.yml b/.github/workflows/examples.yml index 0c19f10d..6d226cbd 100644 --- a/.github/workflows/examples.yml +++ b/.github/workflows/examples.yml @@ -1,8 +1,29 @@ +#/ +# @license Apache-2.0 +# +# Copyright (c) 2021 The Stdlib Authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +#/ + +# Workflow name: name: examples +# Workflow triggers: on: workflow_dispatch: +# Workflow jobs: jobs: examples: runs-on: ubuntu-latest diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index ae05f51e..ac43d572 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -1,7 +1,28 @@ +#/ +# @license Apache-2.0 +# +# Copyright (c) 2021 The Stdlib Authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +#/ + +# Workflow name: name: Publish Package +# Workflow triggers: on: push +# Workflow jobs: jobs: publish: runs-on: ubuntu-latest @@ -32,3 +53,17 @@ jobs: steps: ${{ toJson(steps) }} channel: '#npm-ci' if: failure() + cancel: + runs-on: ubuntu-latest + timeout-minutes: 3 + steps: + - uses: styfle/cancel-workflow-action@0.9.0 + with: + workflow_id: >- + benchmark.yml, + examples.yml, + test.yml, + test_coverage.yml, + test_install.yml, + publish.yml + access_token: ${{ github.token }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3c991081..b24f0dd0 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,8 +1,29 @@ +#/ +# @license Apache-2.0 +# +# Copyright (c) 2021 The Stdlib Authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +#/ + +# Workflow name: name: build +# Workflow triggers: on: workflow_dispatch: +# Workflow jobs: jobs: test: runs-on: ubuntu-latest @@ -15,12 +36,18 @@ jobs: node-version: 15 - name: Install production and development dependencies id: install - run: | - npm install + uses: nick-invision/retry@v2 + with: + timeout_minutes: 2 + max_attempts: 3 + command: npm install - name: Run tests id: tests - run: | - npm test + uses: nick-invision/retry@v2 + with: + timeout_minutes: 3 + max_attempts: 2 + command: npm test - uses: act10ns/slack@v1 with: status: ${{ job.status }} diff --git a/.github/workflows/test_coverage.yml b/.github/workflows/test_coverage.yml index 0e8045d7..0699d785 100644 --- a/.github/workflows/test_coverage.yml +++ b/.github/workflows/test_coverage.yml @@ -1,8 +1,29 @@ +#/ +# @license Apache-2.0 +# +# Copyright (c) 2021 The Stdlib Authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +#/ + +# Workflow name: name: coverage +# Workflow triggers: on: workflow_dispatch: +# Workflow jobs: jobs: test: runs-on: ubuntu-latest @@ -12,13 +33,27 @@ jobs: with: node-version: 15 - name: Install production and development dependencies - run: | - npm install + uses: nick-invision/retry@v2 + with: + timeout_minutes: 2 + max_attempts: 3 + command: npm install - name: Calculate test coverage - run: | - npm run test-cov + uses: nick-invision/retry@v2 + with: + timeout_minutes: 3 + max_attempts: 2 + command: npm run test-cov - name: Upload coverage to Codecov + id: upload uses: codecov/codecov-action@v1 with: directory: reports/coverage flags: unittests + fail_ci_if_error: true + - uses: act10ns/slack@v1 + with: + status: ${{ job.status }} + steps: ${{ toJson(steps) }} + channel: '#npm-ci' + if: failure() diff --git a/.github/workflows/test_install.yml b/.github/workflows/test_install.yml index ee70831f..e79722e3 100644 --- a/.github/workflows/test_install.yml +++ b/.github/workflows/test_install.yml @@ -1,10 +1,31 @@ +#/ +# @license Apache-2.0 +# +# Copyright (c) 2021 The Stdlib Authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +#/ + +# Workflow name: name: Test Installing Dependencies +# Workflow triggers: on: workflow_run: workflows: ["Publish Package"] types: [completed] +# Workflow jobs: jobs: on-success: runs-on: ubuntu-latest @@ -17,8 +38,11 @@ jobs: with: node-version: 15 - name: Install production dependencies via npm - run: | - npm install --only=prod + uses: nick-invision/retry@v2 + with: + timeout_minutes: 2 + max_attempts: 3 + command: npm install --only=prod - uses: act10ns/slack@v1 with: status: ${{ job.status }} diff --git a/Makefile b/Makefile index 6b4a6282..f73f7ee2 100644 --- a/Makefile +++ b/Makefile @@ -280,21 +280,21 @@ endif # Common exclude flags that most recipes for finding package files should use (Note: order does matter to some degree): FIND_COMMON_EXCLUDE_FLAGS ?= \ - -not -path "$(ROOT_DIR)/.*" \ - -not -path "$(NODE_MODULES)/*" \ - -not -path "$(BUILD_DIR)/*" \ - -not -path "$(REPORTS_DIR)/*" \ + '!' -path "$(ROOT_DIR)/.*" \ + '!' -path "$(NODE_MODULES)/*" \ + '!' -path "$(BUILD_DIR)/*" \ + '!' -path "$(REPORTS_DIR)/*" \ # Define exclusion flags to use when searching for benchmark files: FIND_BENCHMARKS_EXCLUDE_FLAGS ?= \ $(FIND_COMMON_EXCLUDE_FLAGS) \ - -not -path "$(ROOT_DIR)/**/$(BENCHMARKS_FIXTURES_FOLDER)/*" + '!' -path "$(ROOT_DIR)/**/$(BENCHMARKS_FIXTURES_FOLDER)/*" # Define flags for finding benchmark files: FIND_BENCHMARKS_FLAGS ?= \ -type f \ -name "$(BENCHMARKS_PATTERN)" \ - -path "$(ROOT_DIR)/**$(BENCHMARKS_FOLDER)/**" \ + \( -path "$(ROOT_DIR)/$(BENCHMARKS_FOLDER)/**" -o -path "$(ROOT_DIR)/**/$(BENCHMARKS_FOLDER)/**" \) \ -regex "$(BENCHMARKS_FILTER)" \ $(FIND_BENCHMARKS_EXCLUDE_FLAGS) @@ -308,13 +308,13 @@ FIND_BENCHMARKS_CMD ?= find $(find_kernel_prefix) $(ROOT_DIR) $(FIND_BENCHMARKS_ # Define exclusion flags to use when searching for examples files: FIND_EXAMPLES_EXCLUDE_FLAGS ?= \ $(FIND_COMMON_EXCLUDE_FLAGS) \ - -not -path "$(ROOT_DIR)/**/$(EXAMPLES_FIXTURES_FOLDER)/*" + '!' -path "$(ROOT_DIR)/**/$(EXAMPLES_FIXTURES_FOLDER)/*" # Define flags for finding examples files: FIND_EXAMPLES_FLAGS ?= \ -type f \ -name "$(EXAMPLES_PATTERN)" \ - -path "$(ROOT_DIR)/**$(EXAMPLES_FOLDER)/**" \ + \( -path "$(ROOT_DIR)/$(EXAMPLES_FOLDER)/**" -o -path "$(ROOT_DIR)/**/$(EXAMPLES_FOLDER)/**" \) \ -regex "$(EXAMPLES_FILTER)" \ $(FIND_EXAMPLES_EXCLUDE_FLAGS) @@ -328,7 +328,7 @@ FIND_EXAMPLES_CMD ?= find $(find_kernel_prefix) $(ROOT_DIR) $(FIND_EXAMPLES_FLAG # Define exclusion flags to use when searching for test files: FIND_TESTS_EXCLUDE_FLAGS ?= \ $(FIND_COMMON_EXCLUDE_FLAGS) \ - -not -path "$(ROOT_DIR)/**/$(TESTS_FIXTURES_FOLDER)/*" + '!' -path "$(ROOT_DIR)/**/$(TESTS_FIXTURES_FOLDER)/*" # Define flags for finding test files: FIND_TESTS_FLAGS ?= \ diff --git a/README.md b/README.md index 03610a62..04347d85 100644 --- a/README.md +++ b/README.md @@ -481,6 +481,10 @@ This package is part of [stdlib][stdlib], a standard library for JavaScript and For more information on the project, filing bug reports and feature requests, and guidance on how to develop [stdlib][stdlib], see the main project [repository][stdlib]. +#### Community + +[![Chat][chat-image]][chat-url] + --- ## License @@ -509,9 +513,12 @@ Copyright © 2016-2021. The Stdlib [Authors][stdlib-authors]. [coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/assert/main.svg [coverage-url]: https://codecov.io/github/stdlib-js/assert?branch=main -[dependencies-image]: https://img.shields.io/david/stdlib-js/assert +[dependencies-image]: https://img.shields.io/david/stdlib-js/assert.svg [dependencies-url]: https://david-dm.org/stdlib-js/assert/main +[chat-image]: https://img.shields.io/gitter/room/stdlib-js/stdlib.svg +[chat-url]: https://gitter.im/stdlib-js/stdlib/ + [stdlib]: https://github.com/stdlib-js/stdlib [stdlib-authors]: https://github.com/stdlib-js/stdlib/graphs/contributors diff --git a/is-node-transform-stream-like/lib/main.js b/is-node-transform-stream-like/lib/main.js index 12e53910..37f63b01 100644 --- a/is-node-transform-stream-like/lib/main.js +++ b/is-node-transform-stream-like/lib/main.js @@ -50,10 +50,7 @@ function isNodeTransformStreamLike( value ) { isNodeDuplexStreamLike( value ) && // Should have transform stream methods: - typeof value._transform === 'function' && - - // Should have transform stream state: - typeof value._transformState === 'object' + typeof value._transform === 'function' ); } diff --git a/is-prng-like/docs/types/tsconfig.json b/is-prng-like/docs/types/tsconfig.json deleted file mode 100644 index a541d610..00000000 --- a/is-prng-like/docs/types/tsconfig.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "compilerOptions": { - "allowSyntheticDefaultImports": false, - "allowUnreachableCode": false, - "allowUnusedLabels": false, - "alwaysStrict": true, - "baseUrl": ".", - "charset": "utf8", - "forceConsistentCasingInFileNames": true, - "keyofStringsOnly": false, - "lib": [ - "es6" - ], - "locale": "en", - "module": "commonjs", - "moduleResolution": "node", - "newLine": "lf", - "noEmit": true, - "noFallthroughCasesInSwitch": true, - "noImplicitAny": true, - "noImplicitReturns": false, - "noImplicitThis": true, - "noStrictGenericChecks": false, - "noUnusedLocals": true, - "noUnusedParameters": true, - "paths": {}, - "pretty": true, - "strictBindCallApply": true, - "strictFunctionTypes": true, - "strictNullChecks": true, - "suppressExcessPropertyErrors": false, - "suppressImplicitAnyIndexErrors": false, - "typeRoots": [ "." ], - "types": [] - }, - "exclude": [ - "node_modules" - ] -} diff --git a/is-prng-like/docs/types/tslint.json b/is-prng-like/docs/types/tslint.json deleted file mode 100644 index a0c360d8..00000000 --- a/is-prng-like/docs/types/tslint.json +++ /dev/null @@ -1,252 +0,0 @@ -{ - "extends": "dtslint/dtslint.json", - "rules": { - "expect": true, - "export-just-namespace": true, - "no-any-union": true, - "no-bad-reference": true, - "no-const-enum": true, - "no-dead-reference": true, - "no-declare-current-package": true, - "no-import-default-of-export-equals": true, - "no-outside-dependencies": true, - "no-padding": true, - "no-redundant-undefined": true, - "no-relative-import-in-test": false, - "no-self-import": true, - "no-single-declare-module": true, - "no-single-element-tuple-type": true, - "no-unnecessary-generics": true, - "no-useless-files": true, - "prefer-declare-function": true, - "strict-export-declare-modifiers": true, - "trim-file": true, - "unified-signatures": true, - "void-return": true, - - "adjacent-overload-signatures": true, - "ban-ts-ignore": false, - "ban-types": false, - "member-access": [ true, "no-public" ], - "member-ordering": [ true, "fields-first" ], - "no-any": false, - "no-empty-interface": true, - "no-import-side-effect": true, - "no-inferrable-types": true, - "no-internal-module": true, - "no-magic-numbers": false, - "no-namespace": true, - "no-non-null-assertion": true, - "no-parameter-reassignment": false, - "no-reference": true, - "no-unnecessary-type-assertion": true, - "no-var-requires": true, - "only-arrow-functions": false, - "prefer-for-of": false, - "promise-function-async": false, - "typedef": true, - "typedef-whitespace": [ true, - { - "call-signature": "nospace", - "index-signature": "nospace", - "parameter": "nospace", - "property-declaration": "nospace", - "variable-declaration": "nospace" - }, - { - "call-signature": "onespace", - "index-signature": "onespace", - "parameter": "onespace", - "property-declaration": "onespace", - "variable-declaration": "onespace" - } - ], - "unified-signatures": true, - - "await-promise": true, - "ban-comma-operator": true, - "ban": [ true, - { - "name": [ "*", "forEach" ], - "message": "Use a regular `for` loop instead." - } - ], - "curly": true, - "forin": true, - "function-constructor": true, - "import-blacklist": [ true, "lodash" ], - "label-position": true, - "no-arg": true, - "no-bitwise": false, - "no-conditional-assignment": true, - "no-console": true, - "no-construct": true, - "no-debugger": true, - "no-duplicate-super": true, - "no-duplicate-switch-case": true, - "no-duplicate-variable": [ true, "check-parameters" ], - "no-dynamic-delete": false, - "no-empty": true, - "no-eval": true, - "no-floating-promises": true, - "no-for-in-array": true, - "no-implicit-dependencies": false, - "no-inferred-empty-object-type": true, - "no-invalid-template-strings": true, - "no-invalid-this": true, - "no-misused-new": true, - "no-null-keyword": false, - "no-object-literal-type-assertion": true, - "no-return-await": true, - "no-shadowed-variable": false, - "no-sparse-arrays": true, - "no-string-literal": false, - "no-string-throw": true, - "no-submodule-imports": false, - "no-switch-case-fall-through": true, - "no-this-assignment": [ true, - { - "allowed-names": [ "^self$" ], - "allow-destructuring": true - } - ], - "no-unbound-method": [ true, "ignore-static" ], - "no-unnecessary-class": true, - "no-unsafe-any": true, - "no-unsafe-finally": true, - "no-unused-expression": true, - "no-use-before-declare": true, - "no-var-keyword": true, - "no-void-expression": true, - "prefer-conditional-expression": false, - "prefer-object-spread": false, - "radix": true, - "restrict-plus-operands": true, - "strict-boolean-expressions": false, - "strict-type-predicates": true, - "switch-default": true, - "triple-equals": true, - "unnecessary-constructor": true, - "use-default-type-parameter": true, - "use-isnan": true, - - "cyclomatic-complexity": false, - "deprecation": true, - "eofline": true, - "indent": [ true, "tabs", 4 ], - "linebreak-style": [ true, "LF" ], - "max-classes-per-file": [ true, 1 ], - "max-file-line-count": [ true, 1000 ], - "max-line-length": [ true, - { - "limit": 80, - "ignore-pattern": "^import |\\/\\/ |\\/?\\* " - } - ], - "no-default-export": false, - "no-default-import": false, - "no-duplicate-imports": true, - "no-mergeable-namespace": true, - "no-require-imports": false, - "object-literal-sort-keys": false, - "prefer-const": true, - "prefer-readonly": true, - "trailing-comma": [ false, - { - "esSpecCompliant": true - } - ], - - "align": false, - "array-type": [ true, "generic" ], - "arrow-parens": true, - "arrow-return-shorthand": true, - "binary-expression-operand-order": true, - "callable-types": true, - "class-name": true, - "comment-format": [ true, "check-space" ], - "comment-type": false, - "completed-docs": true, - "encoding": true, - "file-header": false, - "file-name-casing": [ true, "snake-case" ], - "import-spacing": true, - "increment-decrement": true, - "interface-name": [ true, "never-prefix" ], - "interface-over-type-literal": true, - "jsdoc-format": false, - "match-default-export-name": false, - "newline-before-return": false, - "newline-per-chained-call": false, - "new-parens": true, - "no-angle-bracket-type-assertion": true, - "no-boolean-literal-compare": false, - "no-consecutive-blank-lines": [ true, 2 ], - "no-irregular-whitespace": true, - "no-parameter-properties": true, - "no-redundant-jsdoc": true, - "no-reference-import": true, - "no-trailing-whitespace": true, - "no-unnecessary-callback-wrapper": true, - "no-unnecessary-initializer": true, - "no-unnecessary-qualifier": true, - "number-literal-format": false, - "object-literal-key-quotes": [ true, "always" ], - "object-literal-shorthand": [ true, "never" ], - "one-line": [ true, - "check-catch", - "check-finally", - "check-else", - "check-open-brace", - "check-whitespace" - ], - "one-variable-per-declaration": true, - "ordered-imports": [ true, - { - "grouped-imports": false, - "import-sources-order": "any", - "named-imports-order": "any", - "module-source-path": "full" - } - ], - "prefer-function-over-method": [ true, "allow-public", "allow-protected" ], - "prefer-method-signature": true, - "prefer-switch": [ true, - { - "min-cases": 5 - } - ], - "prefer-template": false, - "prefer-while": true, - "quotemark": [ true, "single", "avoid-escape", "avoid-template" ], - "return-undefined": false, - "semicolon": [ true, "always" ], - "space-before-function-paren": [ true, - { - "anonymous": "always", - "named": "never", - "asyncArrow": "always", - "method": "never", - "constructor": "never" - } - ], - "space-within-parens": [ true, 1 ], - "switch-final-break": [ true, "always" ], - "type-literal-delimiter": [ true, - { - "singleLine": "always" - } - ], - "unnecessary-bind": true, - "variable-name": [ true, "ban-keywords", "check-format" ], - "whitespace": [ true, - "check-branch", - "check-decl", - "check-operator", - "check-rest-spread", - "check-separator", - "check-type", - "check-preblock" - ] - } -} diff --git a/package.json b/package.json index da56c767..cf214b49 100644 --- a/package.json +++ b/package.json @@ -26,7 +26,7 @@ "examples": "make examples", "benchmark": "make benchmark" }, - "homepage": "https://github.com/stdlib-js/stdlib", + "homepage": "https://stdlib.io", "repository": { "type": "git", "url": "git://github.com/stdlib-js/assert.git"