Skip to content

Commit ea2d59d

Browse files
author
Harrison Ifeanyichukwu
committed
chore: Restore package old name, add download badge to the readme
1 parent 441349a commit ea2d59d

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

README.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
1-
# R-Serializer
1+
# XML-Serializer
22

3-
[![Build Status](https://travis-ci.org/harrison-ifeanyichukwu/r-serializer.svg?branch=master)](https://travis-ci.org/harrison-ifeanyichukwu/r-serializer)
4-
[![Coverage Status](https://coveralls.io/repos/github/harrison-ifeanyichukwu/r-serializer/badge.svg?branch=master)](https://coveralls.io/github/harrison-ifeanyichukwu/r-serializer?branch=master)
3+
[![Build Status](https://travis-ci.org/harrison-ifeanyichukwu/xml-serializer.svg?branch=master)](https://travis-ci.org/harrison-ifeanyichukwu/xml-serializer)
4+
[![Coverage Status](https://coveralls.io/repos/github/harrison-ifeanyichukwu/xml-serializer/badge.svg?branch=master)](https://coveralls.io/github/harrison-ifeanyichukwu/xml-serializer?branch=master)
55
[![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg)](https://github.com/semantic-release/semantic-release)
6-
[![npm version](https://badge.fury.io/js/%40harrison-ifeanyichukwu%2Fr-serializer.svg)](https://badge.fury.io/js/%40harrison-ifeanyichukwu%2Fr-serializer)
6+
[![npm version](https://badge.fury.io/js/%40harrison-ifeanyichukwu%2Fxml-serializer.svg)](https://badge.fury.io/js/%40harrison-ifeanyichukwu%2Fxml-serializer)
7+
![npm](https://img.shields.io/npm/dw/%40harrison-ifeanyichukwu%2Fxml-serializer.svg)
78

8-
R-Serializer is a complete JavaScript implementation of the W3C [xml serialization](https://www.w3.org/TR/DOM-Parsing/#dfn-concept-serialize-xml) specifications. All specifications have been implemented and includes the following [specs](https://www.w3.org/TR/DOM-Parsing/#dfn-concept-xml-serialization-algorithm):
9+
XML-Serializer is a complete JavaScript implementation of the W3C [xml serialization](https://www.w3.org/TR/DOM-Parsing/#dfn-concept-serialize-xml) specifications. All specifications have been implemented and includes the following [specs](https://www.w3.org/TR/DOM-Parsing/#dfn-concept-xml-serialization-algorithm):
910

1011
- [ELEMENT_NODE Serialization]
1112

@@ -23,16 +24,16 @@ R-Serializer is a complete JavaScript implementation of the W3C [xml serializati
2324

2425
## Module Availability
2526

26-
This module is available as an [npm](https://www.npmjs.com/) package and also has a browser build that is located inside the `dist` folder. It can easily be integrated with [JSDOM](https://github.com/jsdom/jsdom) for mockup testing.
27+
This module is available as an [npm](https://www.npmjs.com/) scoped package and also has a browser build that is located inside the `dist` folder. It can easily be integrated with [JSDOM](https://github.com/jsdom/jsdom) for mockup testing.
2728

2829
## Getting Started
2930

30-
The below command will install `r-serializer` from npm into your project assuming you have the [npm](https://www.npmjs.com/) already installed.
31+
The below command will install `xml-serializer` from npm into your project assuming you have the [npm](https://www.npmjs.com/) already installed.
3132

3233
**Install as a development dependency**:
3334

3435
```bash
35-
npm install --save-dev r-serializer
36+
npm install --save-dev @harrison-ifeanyichukwu/xml-serializer
3637
```
3738

3839
## Usage Guide

package.json

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"name": "r-serializer",
2+
"name": "@harrison-ifeanyichukwu/xml-serializer",
33
"version": "0.0.0-development",
4-
"description": "R-Serializer is a complete JavaScript implementation of the W3C xml serialization specifications",
4+
"description": "xml-serializer is a complete JavaScript implementation of the W3C xml serialization specifications",
55
"main": "lib/main.js",
66
"publishConfig": {
77
"access": "public"
@@ -13,14 +13,13 @@
1313
"report-coverage": "nyc report --reporter=text-lcov | coveralls",
1414
"prebuild": "rimraf dist && rimraf lib",
1515
"build": "BABEL_ENV=build rollup --config",
16-
"travis-deploy-once": "travis-deploy-once",
1716
"semantic-release": "semantic-release",
1817
"validate-doc": "documentation lint src/**/*.js",
1918
"generate-doc": "rimraf docs/docs && documentation build src/**/*.js -f html -o docs/docs"
2019
},
2120
"repository": {
2221
"type": "git",
23-
"url": "https://github.com/harrison-ifeanyichukwu/r-serializer.git"
22+
"url": "https://github.com/harrison-ifeanyichukwu/xml-serializer.git"
2423
},
2524
"keywords": [
2625
"xml-serialization",
@@ -32,9 +31,9 @@
3231
"author": "Harrison Ifeanyichukwu <Harrisonifeanyichukwu@gmail.com> (https://harrison-ifeanyichukwu.github.io/)",
3332
"license": "MIT",
3433
"bugs": {
35-
"url": "https://github.com/harrison-ifeanyichukwu/r-serializer/issues"
34+
"url": "https://github.com/harrison-ifeanyichukwu/xml-serializer/issues"
3635
},
37-
"homepage": "https://github.com/harrison-ifeanyichukwu/r-serializer#readme",
36+
"homepage": "https://github.com/harrison-ifeanyichukwu/xml-serializer#readme",
3837
"devDependencies": {
3938
"babel-plugin-external-helpers": "6.22.0",
4039
"babel-preset-env": "1.7.0",

0 commit comments

Comments
 (0)