strip-ansi 3.0.0 → 3.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +7 -5
- package/readme.md +5 -5
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "strip-ansi",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.1",
|
|
4
4
|
"description": "Strip ANSI escape codes",
|
|
5
5
|
"license": "MIT",
|
|
6
|
-
"repository": "
|
|
6
|
+
"repository": "chalk/strip-ansi",
|
|
7
7
|
"author": {
|
|
8
8
|
"name": "Sindre Sorhus",
|
|
9
9
|
"email": "sindresorhus@gmail.com",
|
|
@@ -11,13 +11,14 @@
|
|
|
11
11
|
},
|
|
12
12
|
"maintainers": [
|
|
13
13
|
"Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)",
|
|
14
|
-
"Joshua Appelman <
|
|
14
|
+
"Joshua Boy Nicolai Appelman <joshua@jbna.nl> (jbna.nl)",
|
|
15
|
+
"JD Ballard <i.am.qix@gmail.com> (github.com/qix-)"
|
|
15
16
|
],
|
|
16
17
|
"engines": {
|
|
17
18
|
"node": ">=0.10.0"
|
|
18
19
|
},
|
|
19
20
|
"scripts": {
|
|
20
|
-
"test": "
|
|
21
|
+
"test": "xo && ava"
|
|
21
22
|
},
|
|
22
23
|
"files": [
|
|
23
24
|
"index.js"
|
|
@@ -50,6 +51,7 @@
|
|
|
50
51
|
"ansi-regex": "^2.0.0"
|
|
51
52
|
},
|
|
52
53
|
"devDependencies": {
|
|
53
|
-
"ava": "
|
|
54
|
+
"ava": "*",
|
|
55
|
+
"xo": "*"
|
|
54
56
|
}
|
|
55
57
|
}
|
package/readme.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# strip-ansi [](https://travis-ci.org/chalk/strip-ansi)
|
|
2
2
|
|
|
3
3
|
> Strip [ANSI escape codes](http://en.wikipedia.org/wiki/ANSI_escape_code)
|
|
4
4
|
|
|
@@ -22,10 +22,10 @@ stripAnsi('\u001b[4mcake\u001b[0m');
|
|
|
22
22
|
|
|
23
23
|
## Related
|
|
24
24
|
|
|
25
|
-
- [strip-ansi-cli](https://github.com/
|
|
26
|
-
- [has-ansi](https://github.com/
|
|
27
|
-
- [ansi-regex](https://github.com/
|
|
28
|
-
- [chalk](https://github.com/
|
|
25
|
+
- [strip-ansi-cli](https://github.com/chalk/strip-ansi-cli) - CLI for this module
|
|
26
|
+
- [has-ansi](https://github.com/chalk/has-ansi) - Check if a string has ANSI escape codes
|
|
27
|
+
- [ansi-regex](https://github.com/chalk/ansi-regex) - Regular expression for matching ANSI escape codes
|
|
28
|
+
- [chalk](https://github.com/chalk/chalk) - Terminal string styling done right
|
|
29
29
|
|
|
30
30
|
|
|
31
31
|
## License
|