Skip to content

Commit

Permalink
🤖 chore: Lint configuration files.
Browse files Browse the repository at this point in the history
These changes were automatically generated by a transform whose code can be found at:
  - https://github.com/make-github-pseudonymous-again/rejuvenate/blob/7a92df9c28303ed9cd6ee1a5e4999acfc8c52497/src/transforms/package.json:initial-lint.js
Please contact the author of the transform if you believe there was an error.
  • Loading branch information
a-flying-potato authored and make-github-pseudonymous-again committed Oct 12, 2022
1 parent 86762a8 commit c3206de
Showing 1 changed file with 59 additions and 59 deletions.
118 changes: 59 additions & 59 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,65 @@
"name": "@codec-bytes/ascii",
"description": "ASCII encoder/decoder for JavaScript",
"version": "2.0.1",
"license": "AGPL-3.0",
"author": "make-github-pseudonymous-again",
"homepage": "https://codec-bytes.github.io/ascii",
"repository": {
"type": "git",
"url": "https://github.com/codec-bytes/ascii"
},
"bugs": {
"url": "https://github.com/codec-bytes/ascii/issues"
},
"keywords": [
"ascii",
"codec",
"decode",
"encode",
"strings"
],
"sideEffects": false,
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"build": "babel --delete-dir-on-start --env-name production src -d lib",
"cover": "nyc --reporter=lcov npm test",
"dev": "npm run lint -- --fix && npm run cover -- -- -st --fail-fast",
"esdoc": "esdoc",
"lint": "true",
"lint-config": "fixpack --dryRun",
"lint-config-and-fix": "fixpack || fixpack",
"prepare": "npm run build",
"release": "np",
"test": "ava",
"travis": "npm run lint && npm run cover"
},
"dependencies": {
"@codec-bytes/error": "^5.0.0"
},
"devDependencies": {
"@babel/cli": "7.13.10",
"@babel/core": "7.13.10",
"@babel/preset-env": "7.13.10",
"@babel/register": "7.13.8",
"@iterable-iterator/range": "^2.1.0",
"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",
"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",
"np": "7.4.0",
"nyc": "15.1.0",
"power-assert": "1.6.1",
"regenerator-runtime": "0.13.7"
},
"ava": {
"require": [
"regenerator-runtime/runtime",
Expand Down Expand Up @@ -71,63 +129,5 @@
"sourceMaps": "inline"
}
}
},
"bugs": {
"url": "https://github.com/codec-bytes/ascii/issues"
},
"dependencies": {
"@codec-bytes/error": "^5.0.0"
},
"devDependencies": {
"@babel/cli": "7.13.10",
"@babel/core": "7.13.10",
"@babel/preset-env": "7.13.10",
"@babel/register": "7.13.8",
"@iterable-iterator/range": "^2.1.0",
"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",
"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",
"np": "7.4.0",
"nyc": "15.1.0",
"power-assert": "1.6.1",
"regenerator-runtime": "0.13.7",
"fixpack": "4.0.0"
},
"files": [
"lib"
],
"homepage": "https://codec-bytes.github.io/ascii",
"keywords": [
"ascii",
"codec",
"decode",
"encode",
"strings"
],
"license": "AGPL-3.0",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/codec-bytes/ascii"
},
"scripts": {
"build": "babel --delete-dir-on-start --env-name production src -d lib",
"cover": "nyc --reporter=lcov npm test",
"dev": "npm run lint -- --fix && npm run cover -- -- -st --fail-fast",
"esdoc": "esdoc",
"lint": "true",
"prepare": "npm run build",
"release": "np",
"test": "ava",
"travis": "npm run lint && npm run cover",
"lint-config-and-fix": "fixpack || fixpack",
"lint-config": "fixpack --dryRun"
},
"sideEffects": false
}
}

0 comments on commit c3206de

Please sign in to comment.