Socket
Socket
Sign inDemoInstall

character-reference-invalid

Package Overview
Dependencies
0
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.0.0 to 1.0.1

9

history.md

@@ -1,6 +0,11 @@

<!--mdast setext-->
<!--remark setext-->
<!--lint disable no-multiple-toplevel-headings -->
<!--lint disable no-multiple-toplevel-headings-->
1.0.1 / 2016-07-24
==================
* Rewrite module ([`f029916`](https://github.com/wooorm/character-reference-invalid/commit/f029916))
1.0.0 / 2015-09-27
==================

@@ -11,8 +11,3 @@ /**

/* eslint-env commonjs */
/*
* Expose.
*/
/* Expose. */
module.exports = require('./index.json');
{
"name": "character-reference-invalid",
"version": "1.0.0",
"version": "1.0.1",
"description": "HTML invalid numeric character reference information",

@@ -20,38 +20,56 @@ "license": "MIT",

],
"repository": {
"type": "git",
"url": "https://github.com/wooorm/character-reference-invalid.git"
},
"author": "Titus Wormer <tituswormer@gmail.com>",
"repository": "https://github.com/wooorm/character-reference-invalid",
"bugs": "https://github.com/wooorm/character-reference-invalid/issues",
"author": "Titus Wormer <tituswormer@gmail.com> (http://wooorm.com)",
"contributors": [
"Titus Wormer <tituswormer@gmail.com> (http://wooorm.com)"
],
"dependencies": {},
"devDependencies": {
"bail": "^1.0.0",
"browserify": "^11.0.0",
"eslint": "^1.0.0",
"esmangle": "^1.0.0",
"istanbul": "^0.3.0",
"jscs": "^2.0.0",
"jscs-jsdoc": "^1.0.0",
"jsdom": "^6.5.1",
"mdast": "^2.0.0",
"mdast-comment-config": "^1.0.0",
"mdast-github": "^1.0.0",
"mdast-lint": "^1.0.0",
"mdast-slug": "^2.0.0",
"mdast-validate-links": "^1.1.1",
"mdast-yaml-config": "^1.0.0",
"tape": "^4.2.0"
"bail": "^1.0.1",
"browserify": "^13.0.1",
"esmangle": "^1.0.1",
"jsdom": "^9.4.1",
"nyc": "^7.0.0",
"remark-cli": "^1.0.0",
"remark-comment-config": "^4.0.0",
"remark-github": "^5.0.0",
"remark-lint": "^4.0.0",
"remark-validate-links": "^4.0.0",
"tape": "^4.0.0",
"xo": "^0.16.0"
},
"scripts": {
"build-md": "mdast . --quiet --frail",
"build-md": "remark . --quiet --frail",
"build-generate": "node script/generate.js",
"build-bundle": "browserify index.js --bare -s characterReferenceInvalid > character-reference-invalid.js",
"build-bundle": "browserify index.js --bare -s characterEntitiesHTML4 > character-reference-invalid.js",
"build-mangle": "esmangle character-reference-invalid.js > character-reference-invalid.min.js",
"build": "npm run build-md && npm run build-bundle && npm run build-mangle",
"lint-api": "eslint .",
"lint-style": "jscs --reporter inline .",
"lint": "npm run lint-api && npm run lint-style",
"test-api": "node test.js",
"test-coverage": "istanbul cover test.js",
"lint": "xo",
"test-api": "node test",
"test-coverage": "nyc --reporter lcov tape test.js",
"test": "npm run build && npm run lint && npm run test-coverage"
},
"xo": {
"space": true,
"rules": {
"guard-for-in": "off"
},
"ignores": [
"character-reference-invalid.js",
"character-reference-invalid.min.js"
]
},
"remarkConfig": {
"output": true,
"plugins": [
"comment-config",
"github",
"lint",
"validate-links"
],
"settings": {
"bullet": "*"
}
}
}

@@ -1,2 +0,2 @@

# character-reference-invalid [![Build Status](https://img.shields.io/travis/wooorm/character-reference-invalid.svg?style=flat)](https://travis-ci.org/wooorm/character-reference-invalid) [![Coverage Status](https://img.shields.io/codecov/c/github/wooorm/character-reference-invalid.svg)](https://codecov.io/github/wooorm/character-reference-invalid)
# character-reference-invalid [![Build Status][travis-badge]][travis] [![Coverage Status][codecov-badge]][codecov]

@@ -7,3 +7,3 @@ HTML invalid numeric character reference information.

[npm](https://docs.npmjs.com/cli/install):
[npm][npm-install]:

@@ -14,7 +14,2 @@ ```bash

**character-reference-invalid** is also available for
[bower](http://bower.io/#install-packages), [duo](http://duojs.org/#getting-started),
and for AMD, CommonJS, and globals ([uncompressed](character-reference-invalid.js) and
[compressed](character-reference-invalid.min.js)).
## Usage

@@ -30,3 +25,3 @@

### characterReferenceInvalid
### `characterReferenceInvalid`

@@ -37,6 +32,24 @@ Mapping between invalid numeric character reference to replacements.

See [html.spec.whatwg.org](https://html.spec.whatwg.org/multipage/syntax.html#table-charref-overrides).
See [html.spec.whatwg.org][html].
## License
[MIT](LICENSE) © [Titus Wormer](http://wooorm.com)
[MIT][license] © [Titus Wormer][author]
<!-- Definitions -->
[travis-badge]: https://img.shields.io/travis/wooorm/character-reference-invalid.svg
[travis]: https://travis-ci.org/wooorm/character-reference-invalid
[codecov-badge]: https://img.shields.io/codecov/c/github/wooorm/character-reference-invalid.svg
[codecov]: https://codecov.io/github/wooorm/character-reference-invalid
[npm-install]: https://docs.npmjs.com/cli/install
[license]: LICENSE
[author]: http://wooorm.com
[html]: https://html.spec.whatwg.org/multipage/syntax.html#table-charref-overrides

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