devtools-connection
Advanced tools
Comparing version 0.0.4 to 0.0.5
@@ -0,1 +1,5 @@ | ||
/* This Source Code Form is subject to the terms of the Mozilla Public | ||
* License, v. 2.0. If a copy of the MPL was not distributed with this | ||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */ | ||
const { DebuggerClient } = require("./src/debugger/client"); | ||
@@ -2,0 +6,0 @@ const { DebuggerTransport } = require("./src/transport"); |
{ | ||
"name": "devtools-connection", | ||
"version": "0.0.4", | ||
"version": "0.0.5", | ||
"description": "DevTools HTML Connection Logic", | ||
"main": "index.js", | ||
"scripts": { | ||
"license-check": "devtools-license-check", | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
}, | ||
"author": "Jason Laster", | ||
"license": "ISC", | ||
"license": "MPL-2.0", | ||
"dependencies": { | ||
} | ||
} |
@@ -0,1 +1,5 @@ | ||
/* This Source Code Form is subject to the terms of the Mozilla Public | ||
* License, v. 2.0. If a copy of the MPL was not distributed with this | ||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */ | ||
const promise = require("./utils/promise"); | ||
@@ -2,0 +6,0 @@ const EventEmitter = require("./utils/event-emitter"); |
@@ -0,1 +1,5 @@ | ||
/* This Source Code Form is subject to the terms of the Mozilla Public | ||
* License, v. 2.0. If a copy of the MPL was not distributed with this | ||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */ | ||
const DevToolsUtils = require("../utils/DevToolsUtils"); | ||
@@ -2,0 +6,0 @@ const { dumpn, dumpv } = DevToolsUtils; |
@@ -0,1 +1,5 @@ | ||
/* This Source Code Form is subject to the terms of the Mozilla Public | ||
* License, v. 2.0. If a copy of the MPL was not distributed with this | ||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */ | ||
/** | ||
@@ -2,0 +6,0 @@ * Packets contain read / write functionality for the different packet types |
@@ -0,1 +1,5 @@ | ||
/* This Source Code Form is subject to the terms of the Mozilla Public | ||
* License, v. 2.0. If a copy of the MPL was not distributed with this | ||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */ | ||
module.exports = { AppConstants: {}}; |
@@ -0,1 +1,5 @@ | ||
/* This Source Code Form is subject to the terms of the Mozilla Public | ||
* License, v. 2.0. If a copy of the MPL was not distributed with this | ||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */ | ||
/* | ||
@@ -2,0 +6,0 @@ * A sham for https://developer.mozilla.org/en-US/Add-ons/SDK/Low-Level_APIs/chrome |
@@ -0,1 +1,5 @@ | ||
/* This Source Code Form is subject to the terms of the Mozilla Public | ||
* License, v. 2.0. If a copy of the MPL was not distributed with this | ||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */ | ||
/* General utilities used throughout devtools. */ | ||
@@ -2,0 +6,0 @@ var { Ci, Cu, Cc, components } = require("./chrome"); |
@@ -0,1 +1,5 @@ | ||
/* This Source Code Form is subject to the terms of the Mozilla Public | ||
* License, v. 2.0. If a copy of the MPL was not distributed with this | ||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */ | ||
module.metadata = { | ||
@@ -2,0 +6,0 @@ "stability": "unstable" |
@@ -0,1 +1,5 @@ | ||
/* This Source Code Form is subject to the terms of the Mozilla Public | ||
* License, v. 2.0. If a copy of the MPL was not distributed with this | ||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */ | ||
let p = typeof window != "undefined" ? window.Promise : Promise; | ||
@@ -2,0 +6,0 @@ p.defer = function defer() { |
@@ -0,1 +1,5 @@ | ||
/* This Source Code Form is subject to the terms of the Mozilla Public | ||
* License, v. 2.0. If a copy of the MPL was not distributed with this | ||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */ | ||
const { Cc, Ci, Cu } = require("../utils/chrome"); | ||
@@ -2,0 +6,0 @@ const DevToolsUtils = require("../utils/DevToolsUtils"); |
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Mixed license
License(Experimental) Package contains multiple licenses.
Found 1 instance in 1 package
235615
19
2
6821