Socket
Socket
Sign inDemoInstall

reflect

Package Overview
Dependencies
0
Maintainers
0
Versions
9
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.0.4 to 0.0.5

.npmignore

7

package.json

@@ -5,3 +5,3 @@ {

"description": "JavaScript parser adhering to Mozilla's parser API",
"version": "0.0.4",
"version": "0.0.5",
"keywords": [

@@ -30,8 +30,3 @@ "parser",

},
"modules": {
"reflect.js": "dist/reflect.js",
"parser.js": "dist/parser.js",
"nodes.js": "dist/nodes.js"
},
"dependencies": {}
}

@@ -11,3 +11,3 @@ ![Reflect.js](https://github.com/zaach/reflect.js/raw/master/reflectjs.png "Reflect.js")

========
You can download a standalone version of reflect.js to embed in web pages [here](https://github.com/downloads/zaach/reflect.js/standalone-0.0.1.zip).
You can download a minified-standalone version of reflect.js to embed in web pages [here](https://raw.github.com/zaach/reflect.js/master/standalone/reflect.js).

@@ -14,0 +14,0 @@ Install

@@ -22,5 +22,8 @@ // Bundles the built code base as a standalone javascript file

function generate (path) {
var pkg = loadPackage(path),
modules = normalizeModules(pkg.modules, path),
script = bundler.bundle(modules);
var modules = {
"reflect.js": "dist/reflect.js",
"parser.js": "dist/parser.js",
"nodes.js": "dist/nodes.js"
};
var script = bundler.bundle(normalizeModules(modules, path));

@@ -27,0 +30,0 @@ var out = "var Reflect = (function() {\n" + script + ";\nreturn require('reflect').Reflect;\n})();";

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc