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

redeyed

Package Overview
Dependencies
Maintainers
1
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

redeyed - npm Package Compare versions

Comparing version 0.5.0 to 0.6.0

9

config.js

@@ -46,2 +46,3 @@ /*

, 'else' : undefined
, 'enum' : undefined
, 'export' : undefined

@@ -55,7 +56,15 @@ , 'extends' : undefined

, 'if' : undefined
, 'implements' : undefined
, 'import' : undefined
, 'in' : undefined
, 'instanceof' : undefined
, 'interface' : undefined
, 'let' : undefined
, 'new' : undefined
, 'package' : undefined
, 'private' : undefined
, 'protected' : undefined
, 'public' : undefined
, 'return' : undefined

@@ -62,0 +71,0 @@ , 'static' : undefined

4

package.json
{
"name": "redeyed",
"version": "0.5.0",
"version": "0.6.0",
"description": "Takes JavaScript code, along with a config and returns the original code with tokens wrapped as configured.",

@@ -31,4 +31,4 @@ "author": "Thorsten Lorenz <thlorenz@gmx.de> (thlorenz.com)",

"dependencies": {
"esprima-fb": "~12001.1.0-dev-harmony-fb"
"esprima": "~2.7.0"
}
}

@@ -14,3 +14,3 @@ ;(function () {

// server side
esprima = require('esprima-fb');
esprima = require('esprima');
exportFn = function (redeyed) { module.exports = redeyed; };

@@ -21,3 +21,3 @@ bootstrap(esprima, exportFn);

// amd
define(['esprima-fb'], function (esprima) {
define(['esprima'], function (esprima) {
return bootstrap(esprima);

@@ -24,0 +24,0 @@ });

@@ -9,3 +9,3 @@ 'use strict'

, redeyedkey = require.resolve('..')
, esprima = require('esprima-fb')
, esprima = require('esprima')

@@ -12,0 +12,0 @@ function setup() {

@@ -7,3 +7,3 @@ 'use strict';

, redeyed = require('..')
, esprima = require('esprima-fb')
, esprima = require('esprima')

@@ -10,0 +10,0 @@ function inspect (obj) {

@@ -12,3 +12,3 @@ 'use strict';

, tapdir = path.join(node_modules, 'tap')
, esprimadir = path.join(node_modules, 'esprima-fb')
, esprimadir = path.join(node_modules, 'esprima')

@@ -15,0 +15,0 @@ test('tap', function (t) {

Sorry, the diff of this file is not supported yet

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