beautiful-text 0.0.1-security → 0.2.2

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of beautiful-text might be problematic. Click here for more details.

package/History.md ADDED
File without changes
package/Makefile ADDED
@@ -0,0 +1,11 @@
1
+
2
+ build: components index.js
3
+ @component build --dev
4
+
5
+ components: component.json
6
+ @component install --dev
7
+
8
+ clean:
9
+ rm -fr build components template.js
10
+
11
+ .PHONY: clean
package/Readme.md ADDED
@@ -0,0 +1,40 @@
1
+ beautiful-text
2
+ ==========
3
+
4
+ Print colorful text in console
5
+
6
+ ## Installation
7
+ npm
8
+ ```bash
9
+ npm install beautiful-text
10
+ ```
11
+
12
+ component
13
+ ```bash
14
+ component install shallker/beautiful-text
15
+ ```
16
+
17
+ ## Quick Start
18
+ ```javascript
19
+ var colorConsole = require('beautiful-text');
20
+
21
+ colorConsole.red('you should see red text');
22
+ colorConsole.green('you should see green text');
23
+ ```
24
+
25
+ ## API
26
+ ### colorConsole
27
+ #### .black(String text)
28
+ #### .red(String text)
29
+ #### .green(String text)
30
+ #### .yellow(String text)
31
+ #### .blue(String text)
32
+ #### .magenta(String text)
33
+ #### .cyan(String text)
34
+ #### .white(String text)
35
+ #### .grey(String text)
36
+
37
+
38
+ ## License
39
+
40
+ MIT
package/component.js ADDED
@@ -0,0 +1 @@
1
+ module.exports = require('./lib/browser-console');
package/component.json ADDED
@@ -0,0 +1,15 @@
1
+ {
2
+ "name": "beautiful-text",
3
+ "repo": "thomas_flores/beautiful-text",
4
+ "description": "Print colorful text in console",
5
+ "version": "0.0.1",
6
+ "keywords": [],
7
+ "dependencies": {},
8
+ "development": {},
9
+ "license": "MIT",
10
+ "main": "component.js",
11
+ "scripts": [
12
+ "component.js",
13
+ "lib/browser-console.js"
14
+ ]
15
+ }
package/index.js ADDED
@@ -0,0 +1 @@
1
+ module.exports = require('./lib/terminal-console');