New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

caterpillar

Package Overview
Dependencies
Maintainers
2
Versions
150
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

caterpillar - npm Package Compare versions

Comparing version 5.2.0 to 5.3.0-next.1590032994.6f0beeaebad69536abaf36d18d71eb83163e7396

compiled-types/index.d.ts

30

edition-esnext/index.js
'use strict'
var __createBinding =
(this && this.__createBinding) ||
(Object.create
? function (o, m, k, k2) {
if (k2 === undefined) k2 = k
Object.defineProperty(o, k2, {
enumerable: true,
get: function () {
return m[k]
},
})
}
: function (o, m, k, k2) {
if (k2 === undefined) k2 = k
o[k2] = m[k]
})
var __setModuleDefault =
(this && this.__setModuleDefault) ||
(Object.create
? function (o, v) {
Object.defineProperty(o, 'default', { enumerable: true, value: v })
}
: function (o, v) {
o['default'] = v
})
var __importStar =

@@ -9,4 +34,4 @@ (this && this.__importStar) ||

for (var k in mod)
if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k]
result['default'] = mod
if (Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k)
__setModuleDefault(result, mod)
return result

@@ -20,2 +45,3 @@ }

Object.defineProperty(exports, '__esModule', { value: true })
exports.create = exports.Transform = exports.Logger = void 0
const extendr_1 = require('extendr')

@@ -22,0 +48,0 @@ const stream_1 = require('stream')

# History
## v5.3.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)
## v5.2.0 2020 May 11

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

54

package.json
{
"title": "Caterpillar",
"name": "caterpillar",
"version": "5.2.0",
"version": "5.3.0-next.1590032994.6f0beeaebad69536abaf36d18d71eb83163e7396",
"description": "Caterpillar is the ultimate logging system for Node.js, based on transform streams you can log to it and pipe the output off to different locations, including some pre-made ones. Caterpillar also supports log levels according to the RFC standard, as well as line, method, and file fetching for messages. You can even use it in web browsers with caterpillar-browser.",

@@ -119,3 +119,3 @@ "homepage": "https://github.com/bevry/caterpillar",

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

@@ -126,22 +126,22 @@ "main": "edition-esnext/index.js",

"dependencies": {
"extendr": "^5.1.0",
"get-current-line": "^5.1.0",
"rfc-log-levels": "^3.1.0"
"extendr": "^5.2.0",
"get-current-line": "^5.2.0",
"rfc-log-levels": "^3.2.0"
},
"devDependencies": {
"@bevry/update-contributors": "^1.5.0",
"@typescript-eslint/eslint-plugin": "^2.31.0",
"@typescript-eslint/parser": "^2.31.0",
"assert-helpers": "^6.3.0",
"@bevry/update-contributors": "^1.6.0",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"assert-helpers": "^6.5.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",
"valid-directory": "^1.6.0",
"typedoc": "^0.17.7",
"typescript": "^3.9.3",
"valid-directory": "^2.0.0",
"valid-module": "^1.0.0"

@@ -151,11 +151,12 @@ },

"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: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": "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 ) )",
"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 ) )",
"our:compile:types": "tsc --project tsconfig.json --emitDeclarationOnly --declaration --declarationMap --declarationDir ./compiled-types && ( test ! -d compiled-types/source || ( mv compiled-types/source edition-temp && rm -Rf compiled-types && mv edition-temp compiled-types ) )",
"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",

@@ -170,8 +171,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 typescript --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"

@@ -178,0 +178,0 @@ },

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

<script type="module">
import pkg from '//cdn.pika.dev/caterpillar/^5.2.0'
import pkg from '//cdn.pika.dev/caterpillar/^5.3.0'
</script>

@@ -63,3 +63,3 @@ ```

<script type="module">
import pkg from '//unpkg.com/caterpillar@^5.2.0'
import pkg from '//unpkg.com/caterpillar@^5.3.0'
</script>

@@ -72,3 +72,3 @@ ```

<script type="module">
import pkg from '//dev.jspm.io/caterpillar@5.2.0'
import pkg from '//dev.jspm.io/caterpillar@5.3.0'
</script>

@@ -75,0 +75,0 @@ ```

@@ -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