Socket
Socket
Sign inDemoInstall

wiki2ssml

Package Overview
Dependencies
4
Maintainers
1
Versions
22
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.2.19 to 0.2.20

.nyc_output/537b8836-4615-45e7-8416-c2f3e41b3c0c.json

16

package.json
{
"name": "wiki2ssml",
"version": "0.2.19",
"version": "0.2.20",
"description": "Wiki2SSML provides the WikiVoice markup language used for fine-tuning synthesised voice.",

@@ -10,4 +10,3 @@ "license": "Apache-2.0",

"test": "./node_modules/mocha/bin/_mocha ./test/*-test.js",
"coverage": "./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- -R spec",
"codecov": "./node_modules/.bin/codecov"
"coverage": "./node_modules/nyc/bin/nyc.js --reporter=lcov mocha"
},

@@ -38,13 +37,12 @@ "repository": {

"dependencies": {
"pegjs": "^0.10.0",
"peggy": "^3.0.2",
"prettify-xml": "^1.2.0"
},
"devDependencies": {
"chai": "^4.2.0",
"codecov": "^3.7.1",
"eslint": "^5.16.0",
"istanbul": "^0.4.5",
"chai": "^4.3.10",
"eslint": "^8.43.0",
"mocha": "^10.2.0",
"xml2js": "^0.4.23"
"nyc": "^15.1.0",
"xml2js": "^0.6.2"
}
}

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

[![Build Status](https://github.com/baxtree/wiki2ssml/actions/workflows/ci-pipeline.yml/badge.svg?branch=master)](https://github.com/baxtree/wiki2ssml/actions/workflows/ci-pipeline.yml?query=branch%3Amaster) ![Codecov](https://img.shields.io/codecov/c/github/baxtree/wiki2ssml) ![Node](https://img.shields.io/static/v1?label=node.js&message=≥6.4.0&color=green) [![GitHub license](https://img.shields.io/github/license/baxtree/wiki2ssml)](https://github.com/baxtree/wiki2ssml/blob/master/LICENSE)
[![Build Status](https://github.com/baxtree/wiki2ssml/actions/workflows/ci-pipeline.yml/badge.svg?branch=master)](https://github.com/baxtree/wiki2ssml/actions/workflows/ci-pipeline.yml?query=branch%3Amaster) ![Codecov](https://img.shields.io/codecov/c/github/baxtree/wiki2ssml) ![Node](https://img.shields.io/static/v1?label=node.js&message=≥16.0.0&color=green) [![GitHub license](https://img.shields.io/github/license/baxtree/wiki2ssml)](https://github.com/baxtree/wiki2ssml/blob/master/LICENSE)

@@ -3,0 +3,0 @@

"use strict";
var peg = require("pegjs");
var peggy = require("peggy");
var fs = require("fs");

@@ -14,3 +14,3 @@ var prettifyXml = require("prettify-xml");

try {
var _parser = peg.generate(fs.readFileSync(__dirname + "/wikivoice.pegjs").toString());
var _parser = peggy.generate(fs.readFileSync(__dirname + "/wikivoice.pegjs").toString());
}

@@ -104,3 +104,3 @@ catch (e) {

try {
_parser = peg.generate(grammar);
_parser = peggy.generate(grammar);
}

@@ -107,0 +107,0 @@ catch (e) {

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