ansi-style-parser
Advanced tools
Comparing version 3.0.1 to 3.0.2
{ | ||
"name": "ansi-style-parser", | ||
"version": "3.0.1", | ||
"version": "3.0.2", | ||
"description": "Parse ANSI colors and styles", | ||
@@ -26,4 +26,3 @@ "main": "index.js", | ||
"devDependencies": { | ||
"chalk": "^4.1.0", | ||
"tape": "^5.0.1" | ||
"chalk": "^4.1.0" | ||
}, | ||
@@ -30,0 +29,0 @@ "dependencies": { |
# ansi-style-parser | ||
[![build status](https://secure.travis-ci.org/smallhelm/ansi-style-parser.png)](https://travis-ci.org/smallhelm/ansi-style-parser) | ||
Parse ANSI colors and styles | ||
@@ -6,0 +4,0 @@ |
@@ -1,2 +0,3 @@ | ||
var test = require('tape'); | ||
var assert = require("node:assert"); | ||
var test = require("node:test"); | ||
var chalk = require('chalk'); | ||
@@ -6,3 +7,3 @@ var parser = require('./'); | ||
var tst = function(t, src, expected){ | ||
t.deepEquals(parser(src), expected); | ||
assert.deepEqual(parser(src), expected); | ||
}; | ||
@@ -33,4 +34,2 @@ | ||
]); | ||
t.end(); | ||
}); | ||
@@ -51,3 +50,2 @@ | ||
]); | ||
t.end(); | ||
}); |
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
1
6551
5
162
36