Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

rfc-log-levels

Package Overview
Dependencies
Maintainers
1
Versions
89
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rfc-log-levels - npm Package Compare versions

Comparing version 3.1.0 to 3.2.0-next.1590008167.bc63d1f1d202feb07e864a134b99b56265a4bc28

compiled-types/index.d.ts

1

edition-esnext/index.js
'use strict'
Object.defineProperty(exports, '__esModule', { value: true })
exports.getLevelName = exports.getLevelNumber = exports.rfcLogLevels = void 0
/** Default levels are according to the [RFC Standard](http://www.faqs.org/rfcs/rfc3164.html) */

@@ -4,0 +5,0 @@ exports.rfcLogLevels = {

# History
## v3.2.0 2020 May 21
- Updated dependencies, [base files](https://github.com/bevry/base), and [editions](https://editions.bevry.me) using [boundation](https://github.com/bevry/boundation)
## v3.1.0 2020 May 11

@@ -4,0 +8,0 @@

2

LICENSE.md

@@ -7,3 +7,3 @@ <!-- LICENSEFILE/ -->

<ul><li>Copyright &copy; 2018+ Benjamin Lupton</li></ul>
<ul><li>Copyright &copy; 2018+ <a href="https://balupton.com">Benjamin Lupton</a></li></ul>

@@ -10,0 +10,0 @@ and licensed under:

{
"name": "rfc-log-levels",
"version": "3.1.0",
"version": "3.2.0-next.1590008167.bc63d1f1d202feb07e864a134b99b56265a4bc28",
"description": "A map of log level aliases matched to their numeric values. Follows the RFC Standard.",

@@ -70,8 +70,8 @@ "homepage": "https://github.com/bevry/rfc-log-levels",

"funding": "https://bevry.me/fund",
"author": "2018+ Benjamin Lupton <b@lupton.cc>",
"author": "2018+ Benjamin Lupton <b@lupton.cc> (https://balupton.com)",
"maintainers": [
"Benjamin Lupton (https://github.com/balupton)"
"Benjamin Lupton <b@lupton.cc> (https://github.com/balupton)"
],
"contributors": [
"Benjamin Lupton (https://github.com/balupton)"
"Benjamin Lupton <b@lupton.cc> (https://github.com/balupton)"
],

@@ -127,3 +127,3 @@ "bugs": {

],
"types": "source/index.ts",
"types": "./compiled-types/",
"type": "commonjs",

@@ -134,16 +134,16 @@ "main": "edition-esnext/index.js",

"devDependencies": {
"@bevry/update-contributors": "^1.4.0",
"@typescript-eslint/eslint-plugin": "^2.31.0",
"@typescript-eslint/parser": "^2.31.0",
"assert-helpers": "^6.2.0",
"@bevry/update-contributors": "^1.5.0",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"assert-helpers": "^6.4.0",
"eslint": "^7.0.0",
"eslint-config-bevry": "^3.4.0",
"eslint-config-bevry": "^3.5.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"kava": "^5.0.0",
"kava": "^5.1.0",
"prettier": "^2.0.5",
"projectz": "^2.1.0",
"projectz": "^2.2.0",
"surge": "^0.21.3",
"typedoc": "^0.17.6",
"typescript": "^3.8.3",
"typedoc": "^0.17.7",
"typescript": "^3.9.3",
"valid-directory": "^1.6.0",

@@ -154,11 +154,12 @@ "valid-module": "^1.0.0"

"our:clean": "rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next",
"our:compile": "npm run our:compile:edition-browsers && npm run our:compile:edition-esnext",
"our:compile": "npm run our:compile:edition-browsers && npm run our:compile:edition-esnext && npm run our:compile:types",
"our:compile:edition-browsers": "tsc --module ESNext --target ES2019 --outDir ./edition-browsers --project tsconfig.json && test -d edition-browsers/source && ( mv edition-browsers/source edition-temp && rm -Rf edition-browsers && mv edition-temp edition-browsers ) || true",
"our:compile:edition-esnext": "tsc --module commonjs --target ESNext --outDir ./edition-esnext --project tsconfig.json && test -d edition-esnext/source && ( mv edition-esnext/source edition-temp && rm -Rf edition-esnext && mv edition-temp edition-esnext ) || true",
"our:compile:types": "tsc --project tsconfig.json --emitDeclarationOnly --declaration --declarationDir ./compiled-types/ --declarationMap",
"our:deploy": "echo no need for this project",
"our:meta": "npm run our:meta:contributors && npm run our:meta:docs && npm run our:meta:projectz",
"our:meta:contributors": "npx @bevry/update-contributors",
"our:meta:contributors": "update-contributors",
"our:meta:docs": "npm run our:meta:docs:typedoc",
"our:meta:docs:typedoc": "rm -Rf ./docs && npx typedoc --mode file --exclude '**/+(*test*|node_modules)' --excludeExternals --name \"$npm_package_name\" --readme ./README.md --out ./docs ./source",
"our:meta:projectz": "npx projectz compile",
"our:meta:docs:typedoc": "rm -Rf ./docs && typedoc --mode file --exclude '**/+(*test*|node_modules)' --excludeExternals --name \"$npm_package_name\" --readme ./README.md --out ./docs ./source",
"our:meta:projectz": "projectz compile",
"our:release": "npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push",

@@ -173,8 +174,7 @@ "our:release:check-changelog": "cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)",

"our:test": "npm run our:verify && npm test",
"our:verify": "npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:module && npm run our:verify:prettier && npm run our:verify:typescript",
"our:verify:directory": "npx valid-directory",
"our:verify:eslint": "npx eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source",
"our:verify:module": "npx valid-module",
"our:verify:prettier": "npx prettier --write .",
"our:verify:typescript": "npx tsc --noEmit --project tsconfig.json",
"our:verify": "npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:module && npm run our:verify:prettier",
"our:verify:directory": "valid-directory",
"our:verify:eslint": "eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source",
"our:verify:module": "valid-module",
"our:verify:prettier": "prettier --write .",
"test": "node ./edition-esnext/test.js"

@@ -181,0 +181,0 @@ },

@@ -67,3 +67,3 @@ <!-- TITLE/ -->

<script type="module">
import pkg from '//cdn.pika.dev/rfc-log-levels/^3.1.0'
import pkg from '//cdn.pika.dev/rfc-log-levels/^3.2.0'
</script>

@@ -76,3 +76,3 @@ ```

<script type="module">
import pkg from '//unpkg.com/rfc-log-levels@^3.1.0'
import pkg from '//unpkg.com/rfc-log-levels@^3.2.0'
</script>

@@ -85,3 +85,3 @@ ```

<script type="module">
import pkg from '//dev.jspm.io/rfc-log-levels@3.1.0'
import pkg from '//dev.jspm.io/rfc-log-levels@3.2.0'
</script>

@@ -128,3 +128,3 @@ ```

<ul><li><a href="https://github.com/balupton">Benjamin Lupton</a> — <a href="https://github.com/bevry/rfc-log-levels/commits?author=balupton" title="View the GitHub contributions of Benjamin Lupton on repository bevry/rfc-log-levels">view contributions</a></li></ul>
<ul><li><a href="https://balupton.com">Benjamin Lupton</a> — <a href="https://github.com/bevry/rfc-log-levels/commits?author=balupton" title="View the GitHub contributions of Benjamin Lupton on repository bevry/rfc-log-levels">view contributions</a></li></ul>

@@ -149,3 +149,3 @@ <h3>Sponsors</h3>

<ul><li><a href="https://github.com/balupton">Benjamin Lupton</a> — <a href="https://github.com/bevry/rfc-log-levels/commits?author=balupton" title="View the GitHub contributions of Benjamin Lupton on repository bevry/rfc-log-levels">view contributions</a></li></ul>
<ul><li><a href="https://balupton.com">Benjamin Lupton</a> — <a href="https://github.com/bevry/rfc-log-levels/commits?author=balupton" title="View the GitHub contributions of Benjamin Lupton on repository bevry/rfc-log-levels">view contributions</a></li></ul>

@@ -163,3 +163,3 @@ <a href="https://github.com/bevry/rfc-log-levels/blob/master/CONTRIBUTING.md#files">Discover how you can contribute by heading on over to the <code>CONTRIBUTING.md</code> file.</a>

<ul><li>Copyright &copy; 2018+ Benjamin Lupton</li></ul>
<ul><li>Copyright &copy; 2018+ <a href="https://balupton.com">Benjamin Lupton</a></li></ul>

@@ -166,0 +166,0 @@ and licensed under:

@@ -9,6 +9,5 @@ {

"strict": true,
"target": "ESNext",
"lib": []
"target": "ESNext"
},
"include": ["source"]
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc