Socket
Socket
Sign inDemoInstall

dom5

Package Overview
Dependencies
4
Maintainers
9
Versions
21
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 3.0.0 to 3.0.1

lib/index-next.js.map

4

CHANGELOG.md

@@ -9,3 +9,7 @@ # Change Log

<!-- ## Unreleased -->
<!-- Add new, unreleased changes here. -->
## [v3.0.1] (2018-06-28)
- Fix NPM audit warnings.
## [v3.0.0](https://github.com/Polymer/dom5/tree/v3.0.0) (2018-02-12)

@@ -12,0 +16,0 @@ - [BREAKING] Updated to parse5 v4. See:

@@ -28,1 +28,2 @@ "use strict";

__export(require("./iteration"));
//# sourceMappingURL=index-next.js.map

@@ -23,1 +23,2 @@ "use strict";

__export(require("./walking"));
//# sourceMappingURL=index.js.map

2

lib/iteration.js

@@ -26,3 +26,2 @@ "use strict";

}
;
}

@@ -166,1 +165,2 @@ exports.treeMap = treeMap;

exports.queryAll = queryAll;
//# sourceMappingURL=iteration.js.map

@@ -173,1 +173,2 @@ "use strict";

};
//# sourceMappingURL=modification.js.map

@@ -28,3 +28,3 @@ "use strict";

}
function OR() {
function OR( /* ...rules */) {
const rules = new Array(arguments.length);

@@ -43,3 +43,3 @@ for (let i = 0; i < arguments.length; i++) {

}
function AND() {
function AND( /* ...rules */) {
const rules = new Array(arguments.length);

@@ -160,1 +160,2 @@ for (let i = 0; i < arguments.length; i++) {

};
//# sourceMappingURL=predicates.js.map

@@ -164,1 +164,2 @@ "use strict";

};
//# sourceMappingURL=util.js.map

@@ -120,1 +120,2 @@ "use strict";

exports.queryAll = queryAll;
//# sourceMappingURL=walking.js.map
{
"name": "dom5",
"version": "3.0.0",
"version": "3.0.1",
"description": "Utilities for working with parse5 ASTs",
"license": "BSD-3-Clause",
"author": "The Polymer Authors",
"bugs": {
"url": "https://github.com/Polymer/dom5/issues"
},
"homepage": "https://github.com/Polymer/dom5",
"bugs": "https://github.com/Polymer/tools/issues",
"homepage": "https://github.com/Polymer/tools/tree/master/packages/dom5",
"repository": "github:Polymer/tools",
"scripts": {
"build": "tsc",
"prepublish": "npm run test",
"test": "npm run build && npm run lint && mocha -c --ui tdd 'lib/test/*_test.js'",
"format": "./node_modules/.bin/clang-format --style=file -i dom5.ts test/dom5_test.ts",
"lint": "tslint dom5.ts",
"test:watch": "tsc-then -- mocha -c --ui tdd 'lib/test/*_test.js'"
"prepublishOnly": "npm run test",
"test": "npm run build && npm run lint && npm run test:unit",
"test:unit": "mocha -c --ui tdd \"lib/test/*_test.js\"",
"format": "clang-format --style=file -i \"src/**/*.ts\"",
"lint": "tslint 'src/**/*.ts'",
"test:watch": "tsc-then -- mocha -c --ui tdd \"lib/test/*_test.js\""
},
"dependencies": {
"@types/parse5": "^2.2.32",
"@types/parse5": "^2.2.34",
"clone": "^2.1.0",

@@ -31,6 +31,4 @@ "parse5": "^4.0.0"

"clang-format": "=1.0.49",
"mocha": "^2.0.1",
"tsc-then": "^1.1.0",
"tslint": "^4.0.0",
"typescript": "^2.0.0"
"mocha": "^5.2.0",
"tsc-then": "^1.1.0"
},

@@ -41,7 +39,3 @@ "main": "lib/index.js",

"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/Polymer/dom5.git"
}
}

@@ -33,3 +33,3 @@ /**

yield* mapfn(child);
};
}
}

@@ -36,0 +36,0 @@

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