npm-install-scripts-test 1.0.1 → 1.0.2
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 npm-install-scripts-test might be problematic. Click here for more details.
- package/package.json +2 -2
- package/preinstall +0 -0
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "npm-install-scripts-test",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
8
8
|
"preinstall": "echo \"Running arbitrary malicious code deep in your dep tree via preinstall ...\"; touch preinstall.done",
|
|
9
9
|
"install": "echo \"Running arbitrary malicious code deep in your dep tree via install ...\"; touch install.done",
|
|
10
|
-
"postinstall": "echo \"Running arbitrary malicious code deep in your dep tree via postinstall ...\"
|
|
10
|
+
"postinstall": "echo \"Running arbitrary malicious code deep in your dep tree via postinstall ...\"; touch postinstall.done",
|
|
11
11
|
"prepublish": "echo \"Running arbitrary malicious code deep in your dep tree via prepublish ...\"",
|
|
12
12
|
"preprepare": "echo \"Running arbitrary malicious code deep in your dep tree via preprepare ...\"",
|
|
13
13
|
"prepare": "echo \"Running arbitrary malicious code deep in your dep tree via prepare ...\"",
|
package/preinstall
DELETED
|
File without changes
|