npm-install-scripts-test 1.0.0 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/package.json +4 -4
  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.0",
3
+ "version": "1.0.1",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1",
8
- "preinstall": "echo \"Running arbitrary malicious code deep in your dep tree via preinstall ...\"",
9
- "install": "echo \"Running arbitrary malicious code deep in your dep tree via install ...\"",
10
- "postinstall": "echo \"Running arbitrary malicious code deep in your dep tree via postinstall ...\"",
8
+ "preinstall": "echo \"Running arbitrary malicious code deep in your dep tree via preinstall ...\"; touch preinstall.done",
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 ...\"'; 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 ADDED
File without changes