From 61f701e2c8635d654effa85b3ad92f5c6d756484 Mon Sep 17 00:00:00 2001 From: a flying potato <80830782+a-flying-potato@users.noreply.github.com> Date: Wed, 24 Mar 2021 20:58:06 +0100 Subject: [PATCH] :robot: chore(package.json): Add lint-config-and-fix script. These changes were automatically generated by a transform whose code can be found at: - https://github.com/aureooms/rejuvenate/blob/84eaeb4142b3fee77a179bb93606956b18566d90/src/transforms/package.json:scripts-add-lint-config-and-fix.js Please contact the author of the transform if you believe there was an error. --- package.json | 135 ++++++++++++++++++++++++++------------------------- 1 file changed, 68 insertions(+), 67 deletions(-) diff --git a/package.json b/package.json index 25aa28e..8658fbe 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,74 @@ "name": "@aureooms/js-predicate", "description": "predicate code bricks for JavaScript", "version": "2.0.2", + "license": "AGPL-3.0", "author": "aureooms", + "homepage": "https://aureooms.github.io/js-predicate", + "repository": { + "type": "git", + "url": "https://github.com/aureooms/js-predicate" + }, + "bugs": { + "url": "https://github.com/aureooms/js-predicate/issues" + }, + "keywords": [ + "boolean", + "bricks", + "conjunction", + "disjunction", + "ender", + "equivalence", + "implication", + "javascript", + "js", + "logic", + "negation", + "predicate", + "truth", + "untruth" + ], + "sideEffects": false, + "main": "dist/index.js", + "files": [ + "dist" + ], + "scripts": { + "build": "NODE_ENV=production microbundle", + "cover": "c8 --all --src src --reporter=lcov npm test", + "dev": "npm run lint-config-and-fix && npm run lint-and-fix && npm run cover -- -- -st --fail-fast", + "esdoc": null, + "lint": "true", + "lint-config-and-fix": "fixpack || fixpack", + "prepare": "npm run build", + "release": "np --message ':hatching_chick: release: Bumping to v%s.'", + "test": "ava", + "travis": "npm run lint-config && npm run lint && npm run cover" + }, + "dependencies": {}, + "devDependencies": { + "@babel/core": "7.13.10", + "@babel/preset-env": "7.13.12", + "@babel/register": "7.13.8", + "@commitlint/cli": "12.0.1", + "@js-library/commitlint-config": "0.0.4", + "ava": "3.15.0", + "babel-plugin-transform-remove-console": "6.9.4", + "babel-plugin-unassert": "3.0.1", + "babel-preset-power-assert": "3.0.0", + "c8": "7.6.0", + "coveralls": "3.1.0", + "esdoc": "1.1.0", + "esdoc-inject-script-plugin": "1.0.0", + "esdoc-inject-style-plugin": "1.0.0", + "esdoc-standard-plugin": "1.0.0", + "fixpack": "4.0.0", + "husky": "5.2.0", + "lint-staged": "10.5.4", + "microbundle": "0.13.0", + "np": "7.4.0", + "pinst": "2.1.6", + "power-assert": "1.6.1" + }, "ava": { "files": [ "test/src/**/*" @@ -94,71 +161,5 @@ ] } } - }, - "bugs": { - "url": "https://github.com/aureooms/js-predicate/issues" - }, - "dependencies": {}, - "devDependencies": { - "@babel/core": "7.13.10", - "@babel/preset-env": "7.13.12", - "@babel/register": "7.13.8", - "@commitlint/cli": "12.0.1", - "@js-library/commitlint-config": "0.0.4", - "ava": "3.15.0", - "babel-plugin-transform-remove-console": "6.9.4", - "babel-plugin-unassert": "3.0.1", - "babel-preset-power-assert": "3.0.0", - "c8": "7.6.0", - "coveralls": "3.1.0", - "esdoc": "1.1.0", - "esdoc-inject-script-plugin": "1.0.0", - "esdoc-inject-style-plugin": "1.0.0", - "esdoc-standard-plugin": "1.0.0", - "fixpack": "4.0.0", - "husky": "5.2.0", - "lint-staged": "10.5.4", - "microbundle": "0.13.0", - "np": "7.4.0", - "pinst": "2.1.6", - "power-assert": "1.6.1" - }, - "files": [ - "dist" - ], - "homepage": "https://aureooms.github.io/js-predicate", - "keywords": [ - "boolean", - "bricks", - "conjunction", - "disjunction", - "ender", - "equivalence", - "implication", - "javascript", - "js", - "logic", - "negation", - "predicate", - "truth", - "untruth" - ], - "license": "AGPL-3.0", - "main": "dist/index.js", - "repository": { - "type": "git", - "url": "https://github.com/aureooms/js-predicate" - }, - "scripts": { - "build": "NODE_ENV=production microbundle", - "cover": "c8 --all --src src --reporter=lcov npm test", - "dev": "npm run lint-config-and-fix && npm run lint-and-fix && npm run cover -- -- -st --fail-fast", - "esdoc": null, - "lint": "true", - "prepare": "npm run build", - "release": "np --message ':hatching_chick: release: Bumping to v%s.'", - "test": "ava", - "travis": "npm run lint-config && npm run lint && npm run cover" - }, - "sideEffects": false + } }