Code Monkey home page Code Monkey logo

jt400.js's Introduction

jt400 Dependency Status NPM version

NPM

Download jt400.jar and copy in your path.

More info: http://jt400.sourceforge.net/

Install

npm install jt400

Custom config connection

  • Host: 127.0.0.1
  • Database: myDatabase
  • User: myUser
  • Password: myPassword

app.js

var Database = require('jt400');
var database = new Database();

var config = {
  libpath: __dirname + '/jt400.jar',
  drivername: 'com.ibm.as400.access.AS400JDBCDriver',
  url: 'jdbc:as400://127.0.0.1/myDatabase;user=myUser;password=myPassword'
};

database.initialize(config);

// SELECT statements must be run with execute()
database.execute('SELECT * FROM foo');

database.on('execute', function(error, results) {
  if (error) {
    console.log(error);
  }
  else {
    console.log(results);
  }
});

//INSERT and UPDATE statements must be run with executeUpdate()
database.executeUpdate('INSERT INTO foo (bar) VALUES ("bar")');

database.on('executeUpdate', function(error, rowCount) {
  if (error) {
    console.log(error);
  }
  else {
    console.log(rowCount);
  }
});

//CALL stored procedure must use executeStoredProc()
var outputParameters = [{
  Index: 1,
  DataType: 1
}];

database.executeStoredProc("CALL FOO('BAR',?)", outputParameters);

database.on('executeStoredProc', function(error, results) {
  if (error) {
    console.log(error);
  }
  else {
    console.log(results);
  }
});

Run

node app.js

Based on https://npmjs.org/package/jdbc

jt400.js's People

Contributors

paulomcnally avatar gregfroese avatar freshxopensource avatar

Stargazers

Marius avatar  avatar  avatar Jeff Fontas avatar  avatar meddlesome avatar LJ avatar Ramachandra Vellanki avatar Alessio Finamore avatar Eric McCormick avatar Alex Shteinikov avatar Christopher Bebry avatar

Watchers

Alessio Finamore avatar  avatar Reed Swenson avatar James Cloos avatar Bill Gravelle avatar Jesse Gorzinski avatar

jt400.js's Issues

Not all out parameters available on stored procedure call

I am able to successfully call an iSeries stored procedure that has 1 in and 3 out parameters. However it seems that only parameter 3 has a value. Looking at the code I found that it only puts results into the last parameter. Commenting out the below lines returns all out parameter values:

            var result = {};
            for (i = 0; i < outputParams.length; i++) {
              // if(i == outputParams.length - 1 )
              // {
                result[outputParams[i].Index] = callStatement.getStringSync(outputParams[i].Index).trim();
              // }
            }
            self.emit('executeStoredProc', null, result);

How to read a dataarea

Does this support reading a dataarea. If so, can you provide an example on who to achieve this?

Could not find class com.ibm.as400.access.AS400JDBCDriver

Hello my try app of jt400 is working perfectly.
No i´m trying to use it inside my deployd.com installation.It does not work.

In did this inside my deployd app
npm link string
npm link java
had to install again jt400 because npm link jt400 did not work.

After this and inside my job task (dpd-job) to run every 5 minutes i pasted your example code but...

[Error: Error: Could not find class com.ibm.as400.access.AS400JDBCDriver
java.lang.NoClassDefFoundError: com/ibm/as400/access/AS400JDBCDriver
Caused by: java.lang.ClassNotFoundException: com.ibm.as400.access.AS400JDBCDrive r
at java.net.URLClassLoader$1.run(URLClassLoader.java:366)
at java.net.URLClassLoader$1.run(URLClassLoader.java:355)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:354)
at java.lang.ClassLoader.loadClass(ClassLoader.java:425)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:308)
at java.lang.ClassLoader.loadClass(ClassLoader.java:358)

could it be this line ?
libpath: __dirname + '/node_modules/jt400/lib/jt400.jar', that is causing it?
i replaced _dirname for my app folder because it did not recognize __dirname inside deployd
but still got that error..

Problems with syncronous mode

Hello - I'm trying to use this module in conjunction with mongo-sync using common-node. When I try to initialize, I am getting an error, "Assertion failed!" Program: \node_modules\java\build\Release\nodejavabridge_bindings.node
File: ..\src\utils.cpp
Line: 171
Expression: !env->ExceptionCheck()

I've also tried to use Fiber but had the same result. Do you know if this module is able to work with other modules that support syncronous processing? Thank you in advance.

Cannot find module nodejavabridge_bindings.node (desperate user here)

Hi !
I am on this problem for several days and trust me I tried EVERTHING I can think of and absolutely NOTHING works... I really need help on this. Please,

So I have a simple file test,js that looks like this:

var Database = require('jt400');
var database = new Database();

var config = {
  libpath: './jt400.jar',
  drivername: 'com.ibm.as400.access.AS400JDBCDriver',
  url: 'jdbc:as400: *hidden but it works as this url is used in other programs*'
};

database.initialize(config);

// SELECT statements must be run with execute()
database.execute('SELECT * FROM TABLE1');

database.on('execute', function(error, results) {
  if (error) {
    console.log(error);
  }
  else {
    console.log(results);
  }
});

Whenever I do node test.js here is the result:

Cannot find module
module.js:328
throw err;
^

Error: Cannot find module 'path/resttest/node_modules/jt400/node_modules/java/build/Release/nodejavabridge_bindings.node'
at Function.Module._resolveFilename (module.js:326:15)
at Function.Module._load (module.js:277:25)
at Module.require (module.js:354:17)
at require (internal/module.js:12:17)
at Object. (path/resttest/node_modules/jt400/node_modules/java/lib/nodeJavaBridge.js:21:16)
at Module._compile (module.js:410:26)
at Object.Module._extensions..js (module.js:417:10)
at Module.load (module.js:344:32)
at Function.Module._load (module.js:301:12)
at Module.require (module.js:354:17)

Can someone please help me ?
Thank you
(P.S.: yes I have java set in my env path)

Second Execute Call Fails With http.js:689 Error

I've got it installed and working, but my problem is with the fact that when I try a second SQL statement execution, I'm geting an error about not able to set headers. This is from the second GET call, and you can see the "Entries returned: ###" from both calls, but the second call fails when sending the response.
image

Here's the extracted piece of my end point; config is defined at the beginning of my routes main.js file. I've also tried (started) with the initialize outside the individual route GET block, but moved it here for (I hoped) a separate connection. I'm not as familiar with event emitting as I would like to be.

app.get("/api/v1/:someRouteParam)", function(req, res, next) {
        //proper api call

        ibmdb.initialize(conOb);

        var myVar = someRouteParam
        var qStr = "SELECT * FROM tablename WHERE fieldname='"+myVar+"'";

        ibmdb.execute(qStr);

        //for measuring execution time
        var start = new Date();

        ibmdb.on('execute', function(error, rows){
            if( error ){
                console.log(error);
                res.json({
                    "error" : true,
                    "errorMessage": error,
                    "data": null
                });
            }else{
                console.log("Entries returned: "+rows.length);
                res.json({
                    "error":false,
                    "data": rows
                });
            }
            var end = new Date() - start;
            console.log("Execution time: "+end+"ms");
        });

    });

Close connection

When i try to close connection I have an error

"TypeError: Cannot read property 'close' of null"

var Database = require('jt400');
var database = new Database();

var config = {
  libpath: __dirname + '/jt400.jar',
  drivername: 'com.ibm.as400.access.AS400JDBCDriver',
  url: 'jdbc:as400://127.0.0.1/myDatabase;user=myUser;password=myPassword'
};

database.initialize(config);
database.open();
database.execute("select * from mtfusrp "); 
database.on('execute', function(error, results) {
    if (error) {
       console.log(error);
   }
   else {
     console.log(result);
  }
});
database.close();

What is the right way to open and close a connection !

Issue on node-gyp rebuild trying to install jt400, can you help me ?

Hi there, I am trying to install jt400 and got this error on the node-gyp rebuild, Do you know if there is any other solution ?

Thanks.

npm install jt400
npm WARN deprecated [email protected]: Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue

> [email protected] install /Users/jorgeramos/git/invoices-admin/node_modules/java
> node-gyp rebuild

gyp WARN download NVM_NODEJS_ORG_MIRROR is deprecated and will be removed in node-gyp v4, please use NODEJS_ORG_MIRROR
gyp WARN download NVM_NODEJS_ORG_MIRROR is deprecated and will be removed in node-gyp v4, please use NODEJS_ORG_MIRROR
gyp WARN download NVM_NODEJS_ORG_MIRROR is deprecated and will be removed in node-gyp v4, please use NODEJS_ORG_MIRROR
  CXX(target) Release/obj.target/nodejavabridge_bindings/src/java.o
In file included from ../src/java.cpp:1:
In file included from ../src/java.h:9:
In file included from ../../nan/nan.h:182:
../../nan/nan_maybe_43_inl.h:221:17: warning: 'CloneElementAt' is deprecated [-Wdeprecated-declarations]
  return array->CloneElementAt(GetCurrentContext(), index);
                ^
/Users/jorgeramos/.node-gyp/6.4.0/include/node/v8.h:3012:36: note: 'CloneElementAt' has been explicitly marked deprecated here
                MaybeLocal<Object> CloneElementAt(Local<Context> context,
                                   ^
In file included from ../src/java.cpp:1:
In file included from ../src/java.h:9:
In file included from ../../nan/nan.h:188:
In file included from ../../nan/nan_new.h:189:
../../nan/nan_implementation_12_inl.h:40:29: warning: 'New' is deprecated [-Wdeprecated-declarations]
  return v8::BooleanObject::New(value).As<v8::BooleanObject>();
                            ^
/Users/jorgeramos/.node-gyp/6.4.0/include/node/v8.h:3976:56: note: 'New' has been explicitly marked deprecated here
  V8_DEPRECATED("Pass an isolate", static Local<Value> New(bool value));
                                                       ^
In file included from ../src/java.cpp:1:
In file included from ../src/java.h:9:
../../nan/nan.h:590:20: error: no type named 'GCEpilogueCallback' in 'v8::Isolate'
      v8::Isolate::GCEpilogueCallback callback
      ~~~~~~~~~~~~~^
../../nan/nan.h:596:20: error: no type named 'GCEpilogueCallback' in 'v8::Isolate'
      v8::Isolate::GCEpilogueCallback callback) {
      ~~~~~~~~~~~~~^
../../nan/nan.h:601:20: error: no type named 'GCPrologueCallback' in 'v8::Isolate'
      v8::Isolate::GCPrologueCallback callback
      ~~~~~~~~~~~~~^
../../nan/nan.h:607:20: error: no type named 'GCPrologueCallback' in 'v8::Isolate'
      v8::Isolate::GCPrologueCallback callback) {
      ~~~~~~~~~~~~~^
../../nan/nan.h:1927:15: warning: 'SetAccessor' is deprecated [-Wdeprecated-declarations]
  return obj->SetAccessor(
              ^
/Users/jorgeramos/.node-gyp/6.4.0/include/node/v8.h:2736:22: note: 'SetAccessor' has been explicitly marked deprecated here
                bool SetAccessor(Local<Name> name,
                     ^
../src/java.cpp:897:40: warning: 'ToNumber' is deprecated [-Wdeprecated-declarations]
  v8::Local<v8::Number> val = info[0]->ToNumber();
                                       ^
/Users/jorgeramos/.node-gyp/6.4.0/include/node/v8.h:7962:22: note: 'ToNumber' has been explicitly marked deprecated here
Local<Number> Value::ToNumber() const {
                     ^
../src/java.cpp:927:40: warning: 'ToNumber' is deprecated [-Wdeprecated-declarations]
  v8::Local<v8::Number> val = info[0]->ToNumber();
                                       ^
/Users/jorgeramos/.node-gyp/6.4.0/include/node/v8.h:7962:22: note: 'ToNumber' has been explicitly marked deprecated here
Local<Number> Value::ToNumber() const {
                     ^
../src/java.cpp:956:40: warning: 'ToNumber' is deprecated [-Wdeprecated-declarations]
  v8::Local<v8::Number> val = info[0]->ToNumber();
                                       ^
/Users/jorgeramos/.node-gyp/6.4.0/include/node/v8.h:7962:22: note: 'ToNumber' has been explicitly marked deprecated here
Local<Number> Value::ToNumber() const {
                     ^
../src/java.cpp:983:42: warning: 'ToNumber' is deprecated [-Wdeprecated-declarations]
    v8::Local<v8::Number> val = info[0]->ToNumber();
                                         ^
/Users/jorgeramos/.node-gyp/6.4.0/include/node/v8.h:7962:22: note: 'ToNumber' has been explicitly marked deprecated here
Local<Number> Value::ToNumber() const {
                     ^
../src/java.cpp:1019:40: warning: 'ToNumber' is deprecated [-Wdeprecated-declarations]
  v8::Local<v8::Number> val = info[0]->ToNumber();
                                       ^
/Users/jorgeramos/.node-gyp/6.4.0/include/node/v8.h:7962:22: note: 'ToNumber' has been explicitly marked deprecated here
Local<Number> Value::ToNumber() const {
                     ^
../src/java.cpp:1044:40: warning: 'ToNumber' is deprecated [-Wdeprecated-declarations]
  v8::Local<v8::Number> val = info[0]->ToNumber();
                                       ^
/Users/jorgeramos/.node-gyp/6.4.0/include/node/v8.h:7962:22: note: 'ToNumber' has been explicitly marked deprecated here
Local<Number> Value::ToNumber() const {
                     ^
../src/java.cpp:1263:16: warning: 'TryCatch' is deprecated [-Wdeprecated-declarations]
  v8::TryCatch tryCatch;
               ^
/Users/jorgeramos/.node-gyp/6.4.0/include/node/v8.h:6583:40: note: 'TryCatch' has been explicitly marked deprecated here
  V8_DEPRECATED("Use isolate version", TryCatch());
                                       ^
10 warnings and 4 errors generated.
make: *** [Release/obj.target/nodejavabridge_bindings/src/java.o] Error 1
gyp ERR! build error 
gyp ERR! stack Error: `make` failed with exit code: 2
gyp ERR! stack     at ChildProcess.onExit (/Users/jorgeramos/.nvm/versions/node/v6.4.0/lib/node_modules/npm/node_modules/node-gyp/lib/build.js:276:23)
gyp ERR! stack     at emitTwo (events.js:106:13)
gyp ERR! stack     at ChildProcess.emit (events.js:191:7)
gyp ERR! stack     at Process.ChildProcess._handle.onexit (internal/child_process.js:204:12)
gyp ERR! System Darwin 16.4.0
gyp ERR! command "/Users/jorgeramos/.nvm/versions/node/v6.4.0/bin/node" "/Users/jorgeramos/.nvm/versions/node/v6.4.0/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js" "rebuild"
gyp ERR! cwd /Users/jorgeramos/git/invoices-admin/node_modules/java
gyp ERR! node -v v6.4.0
gyp ERR! node-gyp -v v3.4.0
gyp ERR! not ok 
npm WARN [email protected] No repository field.
npm ERR! Darwin 16.4.0
npm ERR! argv "/Users/jorgeramos/.nvm/versions/node/v6.4.0/bin/node" "/Users/jorgeramos/.nvm/versions/node/v6.4.0/bin/npm" "install" "jt400"
npm ERR! node v6.4.0
npm ERR! npm  v3.10.10
npm ERR! code ELIFECYCLE

npm ERR! [email protected] install: `node-gyp rebuild`
npm ERR! Exit status 1
npm ERR! 
npm ERR! Failed at the [email protected] install script 'node-gyp rebuild'.
npm ERR! Make sure you have the latest version of node.js and npm installed.
npm ERR! If you do, this is most likely a problem with the java package,
npm ERR! not with npm itself.
npm ERR! Tell the author that this fails on your system:
npm ERR!     node-gyp rebuild
npm ERR! You can get information on how to open an issue for this project with:
npm ERR!     npm bugs java
npm ERR! Or if that isn't available, you can get their info via:
npm ERR!     npm owner ls java
npm ERR! There is likely additional logging output above.

npm ERR! Please include the following file with any support request:
npm ERR!     /Users/jorgeramos/git/invoices-admin/npm-debug.log

AIX 7.1 Undefined symbol: .JNI_GetDefaultJavaVMInitArgs and .JNI_CreateJavaVM

Hello,
I'm trying to install this package on AIX 7.1
I installed correctly g++, python and all the dependecies needed.
So if I launch the command
npm install --verbose jt400 --javahome=$JAVA_HOME

First here it is the npm verbose:

gyp verb `which` succeeded for `gmake` /usr/bin/gmake
gyp info spawn gmake
gypgmake: Entering directory '/elmec/node_apps/node_modules/jt400/node_modules/java/build'
 info spawn args [ 'V=1', 'BUILDTYPE=Release', '-C', 'build' ]
  g++ '-DNODE_GYP_MODULE_NAME=nodejavabridge_bindings' '-D_LARGEFILE_SOURCE' '-D_FILE_OFFSET_BITS=64' '-D__LITTLE_ENDIAN=1234' '-D__BIG_ENDIAN=4321' '-D__BYTE_ORDER=__BIG_ENDIAN' '-D__FLOAT_WORD_ORDER=__BIG_ENDIAN' '-DBUILDING_NODE_EXTENSION' -I/.node-gyp/0.12.7/src -I/.node-gyp/0.12.7/deps/uv/include -I/.node-gyp/0.12.7/deps/v8/include -I/usr/java5/jre/include -I../node_modules/nan  -pthread -Wall -Wextra -Wno-unused-parameter -maix64 -O3 -O3 -ffunction-sections -fdata-sections -fno-tree-vrp -fno-omit-frame-pointer -fno-rtti -fno-exceptions -MMD -MF ./Release/.deps/Release/obj.target/nodejavabridge_bindings/src/java.o.d.raw  -c -o Release/obj.target/nodejavabridge_bindings/src/java.o ../src/java.cpp
In file included from ../src/java.cpp:1:0:
../src/java.h:7:17: fatal error: jni.h: No such file or directory
 #include <jni.h>
                 ^
compilation terminated.
nodejavabridge_bindings.target.mk:103: recipe for target 'Release/obj.target/nodejavabridge_bindings/src/java.o' failed
gmake: *** [Release/obj.target/nodejavabridge_bindings/src/java.o] Error 1
gmake: Leaving directory '/elmec/node_apps/node_modules/jt400/node_modules/java/build'
gyp ERR! build error
gyp ERR! stack Error: `gmake` failed with exit code: 2
gyp ERR! stack     at ChildProcess.onExit (/elmec/node/lib/node_modules/npm/node_modules/node-gyp/lib/build.js:270:23)
gyp ERR! stack     at ChildProcess.emit (events.js:110:17)
gyp ERR! stack     at Process.ChildProcess._handle.onexit (child_process.js:1074:12)
gyp ERR! System AIX 1
gyp ERR! command "node" "/elmec/node/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js" "rebuild"
gyp ERR! cwd /elmec/node_apps/node_modules/jt400/node_modules/java
gyp ERR! node -v v0.12.7
gyp ERR! node-gyp -v v2.0.1
gyp ERR! not ok
npm verb unsafe-perm in lifecycle false
npm info [email protected] Failed to exec install script
npm verb unlock done using /.npm/_locks/java-8dfcf9e12b222eb9.lock for /elmec/node_apps/node_modules/jt400/node_modules/java
npm verb about to build /elmec/node_apps/node_modules/jt400
npm verb unlock done using /.npm/_locks/jt400-b0cdc25ac805e7ec.lock for /elmec/node_apps/node_modules/jt400
npm verb stack Error: [email protected] install: `node-gyp rebuild`
npm verb stack Exit status 1
npm verb stack     at EventEmitter.<anonymous> (/elmec/node/lib/node_modules/npm/lib/utils/lifecycle.js:213:16)
npm verb stack     at EventEmitter.emit (events.js:110:17)
npm verb stack     at ChildProcess.<anonymous> (/elmec/node/lib/node_modules/npm/lib/utils/spawn.js:24:14)
npm verb stack     at ChildProcess.emit (events.js:110:17)
npm verb stack     at maybeClose (child_process.js:1015:16)
npm verb stack     at Process.ChildProcess._handle.onexit (child_process.js:1087:5)
npm verb pkgid [email protected]
npm verb cwd /elmec/node_apps
npm ERR! AIX 1
npm ERR! argv "/elmec/node/bin/node" "/elmec/node/bin/npm" "install" "--verbose" "jt400" "--javahome=/usr/java5/jre"
npm ERR! node v0.12.7
npm ERR! npm  v2.11.3
npm ERR! code ELIFECYCLE

npm ERR! [email protected] install: `node-gyp rebuild`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the [email protected] install script 'node-gyp rebuild'.
npm ERR! This is most likely a problem with the java package,
npm ERR! not with npm itself.
npm ERR! Tell the author that this fails on your system:
npm ERR!     node-gyp rebuild
npm ERR! You can get their info via:
npm ERR!     npm owner ls java
npm ERR! There is likely additional logging output above.
npm verb exit [ 1, true ]
npm verb unbuild node_modules/jt400/node_modules/java
npm info preuninstall [email protected]
npm info uninstall [email protected]
npm verb unbuild rmStuff [email protected] from /elmec/node_apps/node_modules
npm verb unbuild rmStuff in /elmec/node_apps/node_modules/jt400/node_modules
npm info postuninstall [email protected]
npm verb gentlyRm don't care about contents; nuking /elmec/node_apps/node_modules/jt400/node_modules/java
npm verb unbuild node_modules/jt400
npm info preuninstall [email protected]
npm info uninstall [email protected]
npm verb unbuild rmStuff [email protected] from /elmec/node_apps/node_modules
npm info postuninstall [email protected]
npm verb gentlyRm don't care about contents; nuking /elmec/node_apps/node_modules/jt400

npm ERR! Please include the following file with any support request:
npm ERR!     /elmec/node_apps/npm-debug.log

I get this npm-debug.log

0 info it worked if it ends with ok
1 verbose cli [ '/elmec/node/bin/node',
1 verbose cli   '/elmec/node/bin/npm',
1 verbose cli   'install',
1 verbose cli   '--verbose',
1 verbose cli   'jt400',
1 verbose cli   '--javahome=/usr/java5/jre' ]
2 info using [email protected]
3 info using [email protected]
4 verbose install initial load of /elmec/node_apps/package.json
5 verbose readDependencies loading dependencies from /elmec/node_apps/package.json
6 silly cache add args [ 'jt400', null ]
7 verbose cache add spec jt400
8 silly cache add parsed spec { raw: 'jt400',
8 silly cache add   scope: null,
8 silly cache add   name: 'jt400',
8 silly cache add   rawSpec: '',
8 silly cache add   spec: '*',
8 silly cache add   type: 'range' }
9 silly addNamed jt400@*
10 verbose addNamed "*" is a valid semver range for jt400
11 silly addNameRange { name: 'jt400', range: '*', hasData: false }
12 silly mapToRegistry name jt400
13 silly mapToRegistry using default registry
14 silly mapToRegistry registry https://registry.npmjs.org/
15 silly mapToRegistry uri https://registry.npmjs.org/jt400
16 verbose addNameRange registry:https://registry.npmjs.org/jt400 not in flight; fetching
17 verbose request uri https://registry.npmjs.org/jt400
18 verbose request no auth needed
19 info attempt registry request try #1 at 8:47:07 AM
20 verbose request id 75b778818a0e9ce0
21 verbose etag "MGTMLSM90MH2S1TB3SKNPP9A"
22 http request GET https://registry.npmjs.org/jt400
23 http 304 https://registry.npmjs.org/jt400
24 silly get cb [ 304,
24 silly get   { date: 'Wed, 05 Aug 2015 06:48:36 GMT',
24 silly get     via: '1.1 varnish',
24 silly get     'cache-control': 'max-age=60',
24 silly get     etag: '"MGTMLSM90MH2S1TB3SKNPP9A"',
24 silly get     age: '39',
24 silly get     connection: 'keep-alive',
24 silly get     'x-served-by': 'cache-lcy1134-LCY',
24 silly get     'x-cache': 'HIT',
24 silly get     'x-cache-hits': '1',
24 silly get     'x-timer': 'S1438757316.389563,VS0,VE0',
24 silly get     vary: 'Accept' } ]
25 verbose etag https://registry.npmjs.org/jt400 from cache
26 verbose get saving jt400 to /.npm/registry.npmjs.org/jt400/.cache.json
27 silly addNameRange number 2 { name: 'jt400', range: '*', hasData: true }
28 silly addNameRange versions [ 'jt400', [ '0.0.1', '0.0.2', '0.1.0' ] ]
29 silly addNamed [email protected]
30 verbose addNamed "0.1.0" is a plain semver version for jt400
31 silly cache afterAdd [email protected]
32 verbose afterAdd /.npm/jt400/0.1.0/package/package.json not in flight; writing
33 verbose afterAdd /.npm/jt400/0.1.0/package/package.json written
34 silly install resolved [ { name: 'jt400',
34 silly install resolved     version: '0.1.0',
34 silly install resolved     description: 'Implementation http://jt400.sourceforge.net/ on JavaScript',
34 silly install resolved     main: 'index.js',
34 silly install resolved     dependencies: { java: '^0.4.4', string: '^3.0.0' },
34 silly install resolved     repository:
34 silly install resolved      { type: 'git',
34 silly install resolved        url: 'git://github.com/paulomcnally/jt400.js.git' },
34 silly install resolved     directories: { lib: 'lib' },
34 silly install resolved     keywords: [ 'as400', 'IBM', 'java', 'db2' ],
34 silly install resolved     author: { name: 'Paulo McNally', email: '[email protected]' },
34 silly install resolved     bugs: { url: 'https://github.com/paulomcnally/jt400.js/issues/new' },
34 silly install resolved     gitHead: '3c049a0cbb5a28b0db75ae51a819d18ae2438354',
34 silly install resolved     homepage: 'https://github.com/paulomcnally/jt400.js',
34 silly install resolved     _id: '[email protected]',
34 silly install resolved     scripts: {},
34 silly install resolved     _shasum: 'ba717ed59b51ba9c387a606434ff300172b0b05e',
34 silly install resolved     _from: 'jt400@*',
34 silly install resolved     _npmVersion: '1.4.28',
34 silly install resolved     _npmUser: { name: 'paulomcnally', email: '[email protected]' },
34 silly install resolved     maintainers: [ [Object] ],
34 silly install resolved     dist:
34 silly install resolved      { shasum: 'ba717ed59b51ba9c387a606434ff300172b0b05e',
34 silly install resolved        tarball: 'http://registry.npmjs.org/jt400/-/jt400-0.1.0.tgz' },
34 silly install resolved     _resolved: 'https://registry.npmjs.org/jt400/-/jt400-0.1.0.tgz',
34 silly install resolved     readme: 'ERROR: No README data found!' } ]
35 info install [email protected] into /elmec/node_apps
36 info installOne [email protected]
37 verbose installOne of jt400 to /elmec/node_apps not in flight; installing
38 verbose lock using /.npm/_locks/jt400-b0cdc25ac805e7ec.lock for /elmec/node_apps/node_modules/jt400
39 silly install write writing jt400 0.1.0 to /elmec/node_apps/node_modules/jt400
40 verbose unbuild node_modules/jt400
41 silly gentlyRm /elmec/node_apps/node_modules/jt400 is being purged from base /elmec/node_apps
42 verbose gentlyRm don't care about contents; nuking /elmec/node_apps/node_modules/jt400
43 verbose tar unpack /.npm/jt400/0.1.0/package.tgz
44 verbose tar unpacking to /elmec/node_apps/node_modules/jt400
45 silly gentlyRm /elmec/node_apps/node_modules/jt400 is being purged
46 verbose gentlyRm don't care about contents; nuking /elmec/node_apps/node_modules/jt400
47 silly gunzTarPerm modes [ '755', '644' ]
48 silly gunzTarPerm extractEntry package.json
49 silly gunzTarPerm extractEntry .npmignore
50 silly gunzTarPerm extractEntry README.md
51 silly gunzTarPerm extractEntry LICENSE
52 silly gunzTarPerm extractEntry index.js
53 silly gunzTarPerm extractEntry example/select.js
54 silly gunzTarPerm extractEntry example/update.js
55 silly gunzTarPerm extractEntry lib/jt400.js
56 silly gunzTarPerm extractEntry lib/jt400.jar
57 verbose write writing to /elmec/node_apps/node_modules/jt400/package.json
58 info preinstall [email protected]
59 verbose readDependencies loading dependencies from /elmec/node_apps/node_modules/jt400/package.json
60 silly prepareForInstallMany adding java@^0.4.4 from jt400 dependencies
61 silly prepareForInstallMany adding string@^3.0.0 from jt400 dependencies
62 verbose readDependencies loading dependencies from /elmec/node_apps/node_modules/jt400/package.json
63 silly cache add args [ 'java@^0.4.4', null ]
64 verbose cache add spec java@^0.4.4
65 silly cache add args [ 'string@^3.0.0', null ]
66 verbose cache add spec string@^3.0.0
67 silly cache add parsed spec { raw: 'java@^0.4.4',
67 silly cache add   scope: null,
67 silly cache add   name: 'java',
67 silly cache add   rawSpec: '^0.4.4',
67 silly cache add   spec: '>=0.4.4 <0.5.0',
67 silly cache add   type: 'range' }
68 silly addNamed java@>=0.4.4 <0.5.0
69 verbose addNamed ">=0.4.4 <0.5.0" is a valid semver range for java
70 silly addNameRange { name: 'java', range: '>=0.4.4 <0.5.0', hasData: false }
71 silly mapToRegistry name java
72 silly mapToRegistry using default registry
73 silly mapToRegistry registry https://registry.npmjs.org/
74 silly mapToRegistry uri https://registry.npmjs.org/java
75 verbose addNameRange registry:https://registry.npmjs.org/java not in flight; fetching
76 silly cache add parsed spec { raw: 'string@^3.0.0',
76 silly cache add   scope: null,
76 silly cache add   name: 'string',
76 silly cache add   rawSpec: '^3.0.0',
76 silly cache add   spec: '>=3.0.0 <4.0.0',
76 silly cache add   type: 'range' }
77 silly addNamed string@>=3.0.0 <4.0.0
78 verbose addNamed ">=3.0.0 <4.0.0" is a valid semver range for string
79 silly addNameRange { name: 'string', range: '>=3.0.0 <4.0.0', hasData: false }
80 silly mapToRegistry name string
81 silly mapToRegistry using default registry
82 silly mapToRegistry registry https://registry.npmjs.org/
83 silly mapToRegistry uri https://registry.npmjs.org/string
84 verbose addNameRange registry:https://registry.npmjs.org/string not in flight; fetching
85 verbose request uri https://registry.npmjs.org/java
86 verbose request no auth needed
87 info attempt registry request try #1 at 8:47:08 AM
88 verbose etag "6K17J3O3HB0K67A6H03QM75V3"
89 http request GET https://registry.npmjs.org/java
90 verbose request uri https://registry.npmjs.org/string
91 verbose request no auth needed
92 info attempt registry request try #1 at 8:47:08 AM
93 verbose etag "D4S5MFG9CDPRK9VABP1ES805K"
94 http request GET https://registry.npmjs.org/string
95 http 304 https://registry.npmjs.org/java
96 silly get cb [ 304,
96 silly get   { date: 'Wed, 05 Aug 2015 06:48:37 GMT',
96 silly get     via: '1.1 varnish',
96 silly get     'cache-control': 'max-age=60',
96 silly get     etag: '"6K17J3O3HB0K67A6H03QM75V3"',
96 silly get     age: '39',
96 silly get     connection: 'keep-alive',
96 silly get     'x-served-by': 'cache-lcy1123-LCY',
96 silly get     'x-cache': 'HIT',
96 silly get     'x-cache-hits': '2',
96 silly get     'x-timer': 'S1438757317.411936,VS0,VE0',
96 silly get     vary: 'Accept' } ]
97 verbose etag https://registry.npmjs.org/java from cache
98 verbose get saving java to /.npm/registry.npmjs.org/java/.cache.json
99 http 304 https://registry.npmjs.org/string
100 silly get cb [ 304,
100 silly get   { date: 'Wed, 05 Aug 2015 06:48:37 GMT',
100 silly get     via: '1.1 varnish',
100 silly get     'cache-control': 'max-age=60',
100 silly get     etag: '"D4S5MFG9CDPRK9VABP1ES805K"',
100 silly get     age: '39',
100 silly get     connection: 'keep-alive',
100 silly get     'x-served-by': 'cache-lcy1129-LCY',
100 silly get     'x-cache': 'HIT',
100 silly get     'x-cache-hits': '1',
100 silly get     'x-timer': 'S1438757317.418374,VS0,VE0',
100 silly get     vary: 'Accept' } ]
101 verbose etag https://registry.npmjs.org/string from cache
102 verbose get saving string to /.npm/registry.npmjs.org/string/.cache.json
103 silly addNameRange number 2 { name: 'java', range: '>=0.4.4 <0.5.0', hasData: true }
104 silly addNameRange versions [ 'java',
104 silly addNameRange   [ '0.0.1',
104 silly addNameRange     '0.0.2',
104 silly addNameRange     '0.0.3',
104 silly addNameRange     '0.0.4',
104 silly addNameRange     '0.0.5',
104 silly addNameRange     '0.0.6',
104 silly addNameRange     '0.1.0',
104 silly addNameRange     '0.1.1',
104 silly addNameRange     '0.1.2',
104 silly addNameRange     '0.1.3',
104 silly addNameRange     '0.2.0',
104 silly addNameRange     '0.2.1',
104 silly addNameRange     '0.2.2',
104 silly addNameRange     '0.2.3',
104 silly addNameRange     '0.2.4',
104 silly addNameRange     '0.2.5',
104 silly addNameRange     '0.2.6',
104 silly addNameRange     '0.2.7',
104 silly addNameRange     '0.2.8',
104 silly addNameRange     '0.2.9',
104 silly addNameRange     '0.3.0',
104 silly addNameRange     '0.3.1',
104 silly addNameRange     '0.3.2',
104 silly addNameRange     '0.3.3',
104 silly addNameRange     '0.3.4',
104 silly addNameRange     '0.3.5',
104 silly addNameRange     '0.3.6',
104 silly addNameRange     '0.4.0',
104 silly addNameRange     '0.4.1',
104 silly addNameRange     '0.4.2',
104 silly addNameRange     '0.4.3',
104 silly addNameRange     '0.4.4',
104 silly addNameRange     '0.4.5',
104 silly addNameRange     '0.4.6',
104 silly addNameRange     '0.4.7',
104 silly addNameRange     '5.0.0',
104 silly addNameRange     '5.0.1',
104 silly addNameRange     '0.5.1',
104 silly addNameRange     '0.5.2',
104 silly addNameRange     '0.5.3',
104 silly addNameRange     '0.5.4' ] ]
105 silly addNamed [email protected]
106 verbose addNamed "0.4.7" is a plain semver version for java
107 silly addNameRange number 2 { name: 'string', range: '>=3.0.0 <4.0.0', hasData: true }
108 silly addNameRange versions [ 'string',
108 silly addNameRange   [ '0.0.1',
108 silly addNameRange     '0.0.2',
108 silly addNameRange     '0.0.3',
108 silly addNameRange     '0.0.4',
108 silly addNameRange     '0.1.1',
108 silly addNameRange     '0.1.2',
108 silly addNameRange     '0.2.0',
108 silly addNameRange     '0.2.1',
108 silly addNameRange     '0.2.1-1',
108 silly addNameRange     '0.2.1-2',
108 silly addNameRange     '0.2.2',
108 silly addNameRange     '1.0.0',
108 silly addNameRange     '1.1.0',
108 silly addNameRange     '1.2.0',
108 silly addNameRange     '1.2.1',
108 silly addNameRange     '1.3.0',
108 silly addNameRange     '1.3.1',
108 silly addNameRange     '1.4.0',
108 silly addNameRange     '1.5.0',
108 silly addNameRange     '1.5.1',
108 silly addNameRange     '1.6.0',
108 silly addNameRange     '1.6.1',
108 silly addNameRange     '1.7.0',
108 silly addNameRange     '1.8.0',
108 silly addNameRange     '1.8.1',
108 silly addNameRange     '1.9.0',
108 silly addNameRange     '1.9.1',
108 silly addNameRange     '2.0.0',
108 silly addNameRange     '2.0.1',
108 silly addNameRange     '2.1.0',
108 silly addNameRange     '2.2.0',
108 silly addNameRange     '3.0.0',
108 silly addNameRange     '3.0.1',
108 silly addNameRange     '3.1.0',
108 silly addNameRange     '3.1.1',
108 silly addNameRange     '3.1.2',
108 silly addNameRange     '3.1.3',
108 silly addNameRange     '3.2.0',
108 silly addNameRange     '3.2.1',
108 silly addNameRange     '3.3.0' ] ]
109 silly addNamed [email protected]
110 verbose addNamed "3.3.0" is a plain semver version for string
111 silly cache afterAdd [email protected]
112 verbose afterAdd /.npm/java/0.4.7/package/package.json not in flight; writing
113 silly cache afterAdd [email protected]
114 verbose afterAdd /.npm/string/3.3.0/package/package.json not in flight; writing
115 verbose afterAdd /.npm/java/0.4.7/package/package.json written
116 verbose afterAdd /.npm/string/3.3.0/package/package.json written
117 silly install resolved [ { name: 'java',
117 silly install resolved     description: 'Bridge API to connect with existing Java APIs.',
117 silly install resolved     author: { name: 'Joe Ferner', email: '[email protected]' },
117 silly install resolved     keywords: [ 'java', 'jvm', 'bridge' ],
117 silly install resolved     version: '0.4.7',
117 silly install resolved     engines: { node: '>=0.10.0' },
117 silly install resolved     maintainers: [ [Object] ],
117 silly install resolved     bugs: { url: 'https://github.com/joeferner/node-java/issues' },
117 silly install resolved     license: 'MIT',
117 silly install resolved     repository:
117 silly install resolved      { type: 'git',
117 silly install resolved        url: 'git+https://github.com/joeferner/node-java.git' },
117 silly install resolved     dependencies: { 'find-java-home': '0.1.2', glob: '~3.2.9', nan: '1.4.1' },
117 silly install resolved     devDependencies:
117 silly install resolved      { async: '0.9.0',
117 silly install resolved        chalk: '^1.0.0',
117 silly install resolved        lodash: '^3.5.0',
117 silly install resolved        nodeunit: '0.9.0',
117 silly install resolved        when: '3.6.4' },
117 silly install resolved     scripts:
117 silly install resolved      { test: 'node testRunner.js',
117 silly install resolved        postinstall: 'node postInstall.js',
117 silly install resolved        install: 'node-gyp rebuild' },
117 silly install resolved     main: './index.js',
117 silly install resolved     gypfile: true,
117 silly install resolved     gitHead: '2a1ca00d74c5f7d52ce141d7344fe68047cef4b0',
117 silly install resolved     homepage: 'https://github.com/joeferner/node-java',
117 silly install resolved     _id: '[email protected]',
117 silly install resolved     _shasum: '3c930c11db095f8de890b7bc601e8a20ea73075a',
117 silly install resolved     _from: 'java@>=0.4.4 <0.5.0',
117 silly install resolved     _npmVersion: '1.4.14',
117 silly install resolved     _npmUser: { name: 'joeferner', email: '[email protected]' },
117 silly install resolved     dist:
117 silly install resolved      { shasum: '3c930c11db095f8de890b7bc601e8a20ea73075a',
117 silly install resolved        tarball: 'http://registry.npmjs.org/java/-/java-0.4.7.tgz' },
117 silly install resolved     directories: {},
117 silly install resolved     _resolved: 'https://registry.npmjs.org/java/-/java-0.4.7.tgz',
117 silly install resolved     readme: 'ERROR: No README data found!' },
117 silly install resolved   { name: 'string',
117 silly install resolved     version: '3.3.0',
117 silly install resolved     description: 'string contains methods that aren\'t included in the vanilla JavaScript string such as escaping html, decoding html entities, stripping tags, etc.',
117 silly install resolved     homepage: 'http://stringjs.com',
117 silly install resolved     repository:
117 silly install resolved      { type: 'git',
117 silly install resolved        url: 'git+https://github.com/jprichardson/string.js.git' },
117 silly install resolved     keywords:
117 silly install resolved      [ 'string',
117 silly install resolved        'strings',
117 silly install resolved        'string.js',
117 silly install resolved        'stringjs',
117 silly install resolved        'S',
117 silly install resolved        's',
117 silly install resolved        'csv',
117 silly install resolved        'html',
117 silly install resolved        'entities',
117 silly install resolved        'parse',
117 silly install resolved        'html',
117 silly install resolved        'tags',
117 silly install resolved        'strip',
117 silly install resolved        'trim',
117 silly install resolved        'encode',
117 silly install resolved        'decode',
117 silly install resolved        'escape',
117 silly install resolved        'unescape' ],
117 silly install resolved     author: { name: 'JP Richardson', email: '[email protected]' },
117 silly install resolved     license: 'MIT',
117 silly install resolved     dependencies: {},
117 silly install resolved     devDependencies:
117 silly install resolved      { gulp: '3.8.11',
117 silly install resolved        'gulp-browserify': '0.5.1',
117 silly install resolved        'gulp-mocha': '2.0.0',
117 silly install resolved        'gulp-rename': '1.2.0',
117 silly install resolved        'gulp-rimraf': '^0.1.1',
117 silly install resolved        'gulp-uglify': '1.1.0',
117 silly install resolved        istanbul: '*',
117 silly install resolved        mocha: '*',
117 silly install resolved        mochify: '^2.9.0',
117 silly install resolved        'uglify-js': '1.3.x' },
117 silly install resolved     main: 'lib/string',
117 silly install resolved     scripts:
117 silly install resolved      { test: 'gulp test',
117 silly install resolved        istanbul: 'istanbul cover node_modules/.bin/_mocha test/string.test.js' },
117 silly install resolved     gitHead: '1917b28dceee184cdd4e1899b1feb3bb02833dde',
117 silly install resolved     bugs: { url: 'https://github.com/jprichardson/string.js/issues' },
117 silly install resolved     _id: '[email protected]',
117 silly install resolved     _shasum: 'f73b3e2deae426dcf68c7d56692c0492f9cce483',
117 silly install resolved     _from: 'string@>=3.0.0 <4.0.0',
117 silly install resolved     _npmVersion: '2.10.1',
117 silly install resolved     _nodeVersion: '2.1.0',
117 silly install resolved     _npmUser: { name: 'az7arul', email: '[email protected]' },
117 silly install resolved     maintainers: [ [Object], [Object] ],
117 silly install resolved     dist:
117 silly install resolved      { shasum: 'f73b3e2deae426dcf68c7d56692c0492f9cce483',
117 silly install resolved        tarball: 'http://registry.npmjs.org/string/-/string-3.3.0.tgz' },
117 silly install resolved     directories: {},
117 silly install resolved     _resolved: 'https://registry.npmjs.org/string/-/string-3.3.0.tgz',
117 silly install resolved     readme: 'ERROR: No README data found!' } ]
118 info install [email protected] into /elmec/node_apps/node_modules/jt400
119 info install [email protected] into /elmec/node_apps/node_modules/jt400
120 info installOne [email protected]
121 verbose installOne of java to /elmec/node_apps/node_modules/jt400 not in flight; installing
122 info installOne [email protected]
123 verbose installOne of string to /elmec/node_apps/node_modules/jt400 not in flight; installing
124 verbose lock using /.npm/_locks/java-8dfcf9e12b222eb9.lock for /elmec/node_apps/node_modules/jt400/node_modules/java
125 silly install write writing java 0.4.7 to /elmec/node_apps/node_modules/jt400/node_modules/java
126 verbose lock using /.npm/_locks/string-7b502501b5621d84.lock for /elmec/node_apps/node_modules/jt400/node_modules/string
127 silly install write writing string 3.3.0 to /elmec/node_apps/node_modules/jt400/node_modules/string
128 verbose unbuild node_modules/jt400/node_modules/java
129 verbose unbuild node_modules/jt400/node_modules/string
130 silly gentlyRm /elmec/node_apps/node_modules/jt400/node_modules/java is being purged from base /elmec/node_apps
131 verbose gentlyRm don't care about contents; nuking /elmec/node_apps/node_modules/jt400/node_modules/java
132 verbose tar unpack /.npm/java/0.4.7/package.tgz
133 verbose tar unpacking to /elmec/node_apps/node_modules/jt400/node_modules/java
134 silly gentlyRm /elmec/node_apps/node_modules/jt400/node_modules/java is being purged
135 verbose gentlyRm don't care about contents; nuking /elmec/node_apps/node_modules/jt400/node_modules/java
136 silly gentlyRm /elmec/node_apps/node_modules/jt400/node_modules/string is being purged from base /elmec/node_apps
137 verbose gentlyRm don't care about contents; nuking /elmec/node_apps/node_modules/jt400/node_modules/string
138 silly gunzTarPerm modes [ '755', '644' ]
139 verbose tar unpack /.npm/string/3.3.0/package.tgz
140 verbose tar unpacking to /elmec/node_apps/node_modules/jt400/node_modules/string
141 silly gentlyRm /elmec/node_apps/node_modules/jt400/node_modules/string is being purged
142 verbose gentlyRm don't care about contents; nuking /elmec/node_apps/node_modules/jt400/node_modules/string
143 silly gunzTarPerm modes [ '755', '644' ]
144 silly gunzTarPerm extractEntry package.json
145 silly gunzTarPerm modified mode [ 'package.json', 436, 420 ]
146 silly gunzTarPerm extractEntry package.json
147 silly gunzTarPerm extractEntry .npmignore
148 silly gunzTarPerm modified mode [ '.npmignore', 436, 420 ]
149 silly gunzTarPerm extractEntry README.md
150 silly gunzTarPerm modified mode [ 'README.md', 436, 420 ]
151 silly gunzTarPerm extractEntry .npmignore
152 silly gunzTarPerm extractEntry README.md
153 silly gunzTarPerm extractEntry LICENSE
154 silly gunzTarPerm modified mode [ 'LICENSE', 436, 420 ]
155 silly gunzTarPerm extractEntry gulpfile.js
156 silly gunzTarPerm extractEntry findJavaHome.js
157 silly gunzTarPerm extractEntry index.js
158 silly gunzTarPerm modified mode [ 'index.js', 436, 420 ]
159 silly gunzTarPerm extractEntry testRunner.js
160 silly gunzTarPerm modified mode [ 'testRunner.js', 436, 420 ]
161 silly gunzTarPerm extractEntry CHANGELOG.md
162 silly gunzTarPerm extractEntry dist/string.js
163 silly gunzTarPerm extractEntry dist/string.min.js
164 silly gunzTarPerm extractEntry postInstall.js
165 silly gunzTarPerm modified mode [ 'postInstall.js', 436, 420 ]
166 silly gunzTarPerm extractEntry .idea/codeStyleSettings.xml
167 silly gunzTarPerm extractEntry testHelpers.js
168 silly gunzTarPerm modified mode [ 'testHelpers.js', 436, 420 ]
169 silly gunzTarPerm extractEntry lib/nodeJavaBridge.js
170 silly gunzTarPerm modified mode [ 'lib/nodeJavaBridge.js', 436, 420 ]
171 silly gunzTarPerm extractEntry .idea/encodings.xml
172 silly gunzTarPerm extractEntry .idea/misc.xml
173 silly gunzTarPerm extractEntry examples/lucene/example.js
174 silly gunzTarPerm modified mode [ 'examples/lucene/example.js', 509, 493 ]
175 silly gunzTarPerm extractEntry examples/lucene/lucene-core-3.5.0.jar
176 silly gunzTarPerm modified mode [ 'examples/lucene/lucene-core-3.5.0.jar', 436, 420 ]
177 silly gunzTarPerm extractEntry .idea/modules.xml
178 silly gunzTarPerm extractEntry .idea/scopes/scope_settings.xml
179 silly gunzTarPerm extractEntry .idea/string.js.iml
180 silly gunzTarPerm extractEntry .idea/vcs.xml
181 silly gunzTarPerm extractEntry .idea/workspace.xml
182 silly gunzTarPerm extractEntry lib/_count.js
183 silly gunzTarPerm extractEntry lib/_splitLeft.js
184 silly gunzTarPerm extractEntry lib/_splitRight.js
185 silly gunzTarPerm extractEntry lib/string.js
186 silly gunzTarPerm extractEntry .min-wd
187 silly gunzTarPerm extractEntry examples/mixJavaAndNode/runMyClass.js
188 silly gunzTarPerm modified mode [ 'examples/mixJavaAndNode/runMyClass.js', 509, 493 ]
189 silly gunzTarPerm extractEntry examples/mixJavaAndNode/src/com/nearinfinity/nodeJava/MyClass.class
190 silly gunzTarPerm modified mode [ 'examples/mixJavaAndNode/src/com/nearinfinity/nodeJava/MyClass.class',
190 silly gunzTarPerm   436,
190 silly gunzTarPerm   420 ]
191 silly gunzTarPerm extractEntry examples/mixJavaAndNode/src/com/nearinfinity/nodeJava/MyClass.java
192 silly gunzTarPerm modified mode [ 'examples/mixJavaAndNode/src/com/nearinfinity/nodeJava/MyClass.java',
192 silly gunzTarPerm   436,
192 silly gunzTarPerm   420 ]
193 silly gunzTarPerm extractEntry .kdev4/node-java.kdev4
194 silly gunzTarPerm modified mode [ '.kdev4/node-java.kdev4', 384, 420 ]
195 silly gunzTarPerm extractEntry .travis.yml
196 silly gunzTarPerm modified mode [ '.travis.yml', 436, 420 ]
197 silly gunzTarPerm extractEntry jarjar-1.4.jar
198 silly gunzTarPerm modified mode [ 'jarjar-1.4.jar', 416, 420 ]
199 silly gunzTarPerm extractEntry jarjar.rule
200 silly gunzTarPerm modified mode [ 'jarjar.rule', 436, 420 ]
201 silly gunzTarPerm extractEntry binding.gyp
202 silly gunzTarPerm modified mode [ 'binding.gyp', 436, 420 ]
203 verbose write writing to /elmec/node_apps/node_modules/jt400/node_modules/string/package.json
204 silly gunzTarPerm extractEntry node-java.cbp
205 silly gunzTarPerm modified mode [ 'node-java.cbp', 436, 420 ]
206 info preinstall [email protected]
207 verbose readDependencies loading dependencies from /elmec/node_apps/node_modules/jt400/node_modules/string/package.json
208 verbose readDependencies loading dependencies from /elmec/node_apps/node_modules/jt400/node_modules/string/package.json
209 silly install resolved []
210 verbose about to build /elmec/node_apps/node_modules/jt400/node_modules/string
211 info build /elmec/node_apps/node_modules/jt400/node_modules/string
212 info linkStuff [email protected]
213 silly linkStuff [email protected] has /elmec/node_apps/node_modules/jt400/node_modules as its parent node_modules
214 verbose linkBins [email protected]
215 verbose linkMans [email protected]
216 verbose rebuildBundles [email protected]
217 info install [email protected]
218 info postinstall [email protected]
219 silly gunzTarPerm extractEntry node-java.kdev4
220 silly gunzTarPerm modified mode [ 'node-java.kdev4', 384, 420 ]
221 verbose unlock done using /.npm/_locks/string-7b502501b5621d84.lock for /elmec/node_apps/node_modules/jt400/node_modules/string
222 silly gunzTarPerm extractEntry commons-lang.jarjar.rules
223 silly gunzTarPerm modified mode [ 'commons-lang.jarjar.rules', 436, 420 ]
224 silly gunzTarPerm extractEntry commons-lang3-node-java.jar
225 silly gunzTarPerm modified mode [ 'commons-lang3-node-java.jar', 436, 420 ]
226 silly gunzTarPerm extractEntry compile-java-code.sh
227 silly gunzTarPerm modified mode [ 'compile-java-code.sh', 509, 493 ]
228 silly gunzTarPerm extractEntry projectFilesBackup/.idea/libraries/sass_stdlib.xml
229 silly gunzTarPerm modified mode [ 'projectFilesBackup/.idea/libraries/sass_stdlib.xml',
229 silly gunzTarPerm   436,
229 silly gunzTarPerm   420 ]
230 silly gunzTarPerm extractEntry projectFilesBackup1/.idea/libraries/sass_stdlib.xml
231 silly gunzTarPerm modified mode [ 'projectFilesBackup1/.idea/libraries/sass_stdlib.xml',
231 silly gunzTarPerm   436,
231 silly gunzTarPerm   420 ]
232 silly gunzTarPerm extractEntry src/javaScope.h
233 silly gunzTarPerm modified mode [ 'src/javaScope.h', 436, 420 ]
234 silly gunzTarPerm extractEntry src/.kdev_include_paths
235 silly gunzTarPerm modified mode [ 'src/.kdev_include_paths', 436, 420 ]
236 silly gunzTarPerm extractEntry src/java.h
237 silly gunzTarPerm modified mode [ 'src/java.h', 436, 420 ]
238 silly gunzTarPerm extractEntry src/javaObject.cpp
239 silly gunzTarPerm modified mode [ 'src/javaObject.cpp', 436, 420 ]
240 silly gunzTarPerm extractEntry src/javaObject.h
241 silly gunzTarPerm modified mode [ 'src/javaObject.h', 436, 420 ]
242 silly gunzTarPerm extractEntry src/javaScope.cpp
243 silly gunzTarPerm modified mode [ 'src/javaScope.cpp', 436, 420 ]
244 silly gunzTarPerm extractEntry src/java.cpp
245 silly gunzTarPerm modified mode [ 'src/java.cpp', 436, 420 ]
246 silly gunzTarPerm extractEntry src/methodCallBaton.cpp
247 silly gunzTarPerm modified mode [ 'src/methodCallBaton.cpp', 436, 420 ]
248 silly gunzTarPerm extractEntry src/methodCallBaton.h
249 silly gunzTarPerm modified mode [ 'src/methodCallBaton.h', 436, 420 ]
250 silly gunzTarPerm extractEntry src/nodeJavaBridge.cpp
251 silly gunzTarPerm modified mode [ 'src/nodeJavaBridge.cpp', 436, 420 ]
252 silly gunzTarPerm extractEntry src/node_NodeDynamicProxyClass.h
253 silly gunzTarPerm modified mode [ 'src/node_NodeDynamicProxyClass.h', 436, 420 ]
254 silly gunzTarPerm extractEntry src/utils.cpp
255 silly gunzTarPerm modified mode [ 'src/utils.cpp', 436, 420 ]
256 silly gunzTarPerm extractEntry src/utils.h
257 silly gunzTarPerm modified mode [ 'src/utils.h', 436, 420 ]
258 silly gunzTarPerm extractEntry src-java/node/CastingUtils.class
259 silly gunzTarPerm modified mode [ 'src-java/node/CastingUtils.class', 436, 420 ]
260 silly gunzTarPerm extractEntry src-java/node/CastingUtils.java
261 silly gunzTarPerm modified mode [ 'src-java/node/CastingUtils.java', 436, 420 ]
262 silly gunzTarPerm extractEntry src-java/node/NodeDynamicProxyClass.class
263 silly gunzTarPerm modified mode [ 'src-java/node/NodeDynamicProxyClass.class', 436, 420 ]
264 silly gunzTarPerm extractEntry src-java/node/NodeDynamicProxyClass.java
265 silly gunzTarPerm modified mode [ 'src-java/node/NodeDynamicProxyClass.java', 436, 420 ]
266 silly gunzTarPerm extractEntry src-java/node/NodeJsException.class
267 silly gunzTarPerm modified mode [ 'src-java/node/NodeJsException.class', 436, 420 ]
268 silly gunzTarPerm extractEntry src-java/node/NodeJsException.java
269 silly gunzTarPerm modified mode [ 'src-java/node/NodeJsException.java', 436, 420 ]
270 silly gunzTarPerm extractEntry test/utils-types-test.js
271 silly gunzTarPerm modified mode [ 'test/utils-types-test.js', 436, 420 ]
272 silly gunzTarPerm extractEntry test/promises-test.js
273 silly gunzTarPerm modified mode [ 'test/promises-test.js', 436, 420 ]
274 silly gunzTarPerm extractEntry test/javaObject-test.js
275 silly gunzTarPerm modified mode [ 'test/javaObject-test.js', 436, 420 ]
276 silly gunzTarPerm extractEntry test/java-staticField-test.js
277 silly gunzTarPerm modified mode [ 'test/java-staticField-test.js', 436, 420 ]
278 silly gunzTarPerm extractEntry test/simple-test.js
279 silly gunzTarPerm modified mode [ 'test/simple-test.js', 436, 420 ]
280 silly gunzTarPerm extractEntry test/java-callStaticMethod-test.js
281 silly gunzTarPerm modified mode [ 'test/java-callStaticMethod-test.js', 436, 420 ]
282 silly gunzTarPerm extractEntry test/java-ambiguousMethod-test.js
283 silly gunzTarPerm modified mode [ 'test/java-ambiguousMethod-test.js', 436, 420 ]
284 silly gunzTarPerm extractEntry test/instanceof-test.js
285 silly gunzTarPerm extractEntry test/importClass-test.js
286 silly gunzTarPerm modified mode [ 'test/importClass-test.js', 436, 420 ]
287 silly gunzTarPerm extractEntry test/dynamicProxy-test.js
288 silly gunzTarPerm modified mode [ 'test/dynamicProxy-test.js', 436, 420 ]
289 silly gunzTarPerm extractEntry test/java-newInstance-test.js
290 silly gunzTarPerm modified mode [ 'test/java-newInstance-test.js', 436, 420 ]
291 silly gunzTarPerm extractEntry test/awt-test.js
292 silly gunzTarPerm modified mode [ 'test/awt-test.js', 436, 420 ]
293 silly gunzTarPerm extractEntry test/Test$SubClass.class
294 silly gunzTarPerm modified mode [ 'test/Test$SubClass.class', 436, 420 ]
295 silly gunzTarPerm extractEntry test/TestExceptions.java
296 silly gunzTarPerm modified mode [ 'test/TestExceptions.java', 436, 420 ]
297 silly gunzTarPerm extractEntry test/commons-lang3-3.1.jar
298 silly gunzTarPerm modified mode [ 'test/commons-lang3-3.1.jar', 436, 420 ]
299 silly gunzTarPerm extractEntry test/TestExceptions.class
300 silly gunzTarPerm extractEntry test/Test.java
301 silly gunzTarPerm modified mode [ 'test/Test.java', 436, 420 ]
302 silly gunzTarPerm extractEntry test/Test.class
303 silly gunzTarPerm modified mode [ 'test/Test.class', 436, 420 ]
304 silly gunzTarPerm extractEntry test/Test$SuperClass.class
305 silly gunzTarPerm modified mode [ 'test/Test$SuperClass.class', 436, 420 ]
306 silly gunzTarPerm extractEntry test/RunInterface$Interface0Arg.class
307 silly gunzTarPerm extractEntry test/Test$StaticEnum.class
308 silly gunzTarPerm modified mode [ 'test/Test$StaticEnum.class', 436, 420 ]
309 silly gunzTarPerm extractEntry test/RunInterface.java
310 silly gunzTarPerm modified mode [ 'test/RunInterface.java', 436, 420 ]
311 silly gunzTarPerm extractEntry test/RunInterface.class
312 silly gunzTarPerm modified mode [ 'test/RunInterface.class', 436, 420 ]
313 silly gunzTarPerm extractEntry test/nodejs.png
314 silly gunzTarPerm modified mode [ 'test/nodejs.png', 436, 420 ]
315 silly gunzTarPerm extractEntry test/RunInterface$InterfaceWithReturn.class
316 silly gunzTarPerm extractEntry test/RunInterface$Interface1Arg.class
317 silly gunzTarPerm extractEntry test/RunInterface$1.class
318 silly gunzTarPerm modified mode [ 'test/RunInterface$1.class', 436, 420 ]
319 silly gunzTarPerm extractEntry test8/testLambda.js
320 silly gunzTarPerm modified mode [ 'test8/testLambda.js', 436, 420 ]
321 silly gunzTarPerm extractEntry test8/TestLambda$IntegerMath.class
322 silly gunzTarPerm modified mode [ 'test8/TestLambda$IntegerMath.class', 436, 420 ]
323 silly gunzTarPerm extractEntry test8/TestLambda.class
324 silly gunzTarPerm modified mode [ 'test8/TestLambda.class', 436, 420 ]
325 silly gunzTarPerm extractEntry test8/TestLambda.java
326 silly gunzTarPerm modified mode [ 'test8/TestLambda.java', 436, 420 ]
327 silly gunzTarPerm extractEntry testAsyncOptions/testAllThreeSuffix.js
328 silly gunzTarPerm modified mode [ 'testAsyncOptions/testAllThreeSuffix.js', 436, 420 ]
329 silly gunzTarPerm extractEntry testAsyncOptions/testAsyncSuffixSyncDefault.js
330 silly gunzTarPerm modified mode [ 'testAsyncOptions/testAsyncSuffixSyncDefault.js', 436, 420 ]
331 silly gunzTarPerm extractEntry testAsyncOptions/testDefacto.js
332 silly gunzTarPerm modified mode [ 'testAsyncOptions/testDefacto.js', 436, 420 ]
333 silly gunzTarPerm extractEntry testAsyncOptions/testDefactoPlusPromise.js
334 silly gunzTarPerm modified mode [ 'testAsyncOptions/testDefactoPlusPromise.js', 436, 420 ]
335 silly gunzTarPerm extractEntry testAsyncOptions/testDefault.js
336 silly gunzTarPerm modified mode [ 'testAsyncOptions/testDefault.js', 436, 420 ]
337 silly gunzTarPerm extractEntry testAsyncOptions/testNoAsync.js
338 silly gunzTarPerm modified mode [ 'testAsyncOptions/testNoAsync.js', 436, 420 ]
339 silly gunzTarPerm extractEntry testAsyncOptions/testSyncDefaultPlusPromise.js
340 silly gunzTarPerm modified mode [ 'testAsyncOptions/testSyncDefaultPlusPromise.js', 436, 420 ]
341 silly gunzTarPerm extractEntry compile-java8-code.sh
342 silly gunzTarPerm modified mode [ 'compile-java8-code.sh', 509, 493 ]
343 silly gunzTarPerm extractEntry update-commons-lang.sh
344 silly gunzTarPerm modified mode [ 'update-commons-lang.sh', 509, 493 ]
345 verbose write writing to /elmec/node_apps/node_modules/jt400/node_modules/java/package.json
346 info preinstall [email protected]
347 verbose readDependencies loading dependencies from /elmec/node_apps/node_modules/jt400/node_modules/java/package.json
348 silly prepareForInstallMany adding [email protected] from java dependencies
349 silly prepareForInstallMany adding glob@~3.2.9 from java dependencies
350 silly prepareForInstallMany adding [email protected] from java dependencies
351 verbose readDependencies loading dependencies from /elmec/node_apps/node_modules/jt400/node_modules/java/package.json
352 silly cache add args [ 'glob@~3.2.9', null ]
353 verbose cache add spec glob@~3.2.9
354 silly cache add parsed spec { raw: 'glob@~3.2.9',
354 silly cache add   scope: null,
354 silly cache add   name: 'glob',
354 silly cache add   rawSpec: '~3.2.9',
354 silly cache add   spec: '>=3.2.9 <3.3.0',
354 silly cache add   type: 'range' }
355 silly addNamed glob@>=3.2.9 <3.3.0
356 verbose addNamed ">=3.2.9 <3.3.0" is a valid semver range for glob
357 silly addNameRange { name: 'glob', range: '>=3.2.9 <3.3.0', hasData: false }
358 silly mapToRegistry name glob
359 silly mapToRegistry using default registry
360 silly mapToRegistry registry https://registry.npmjs.org/
361 silly mapToRegistry uri https://registry.npmjs.org/glob
362 verbose addNameRange registry:https://registry.npmjs.org/glob not in flight; fetching
363 silly cache add args [ '[email protected]', null ]
364 verbose cache add spec [email protected]
365 silly cache add parsed spec { raw: '[email protected]',
365 silly cache add   scope: null,
365 silly cache add   name: 'nan',
365 silly cache add   rawSpec: '1.4.1',
365 silly cache add   spec: '1.4.1',
365 silly cache add   type: 'version' }
366 silly addNamed [email protected]
367 verbose addNamed "1.4.1" is a plain semver version for nan
368 silly mapToRegistry name nan
369 silly mapToRegistry using default registry
370 silly mapToRegistry registry https://registry.npmjs.org/
371 silly mapToRegistry uri https://registry.npmjs.org/nan
372 verbose addNameVersion registry:https://registry.npmjs.org/nan not in flight; fetching
373 silly cache add args [ '[email protected]', null ]
374 verbose cache add spec [email protected]
375 silly cache add parsed spec { raw: '[email protected]',
375 silly cache add   scope: null,
375 silly cache add   name: 'find-java-home',
375 silly cache add   rawSpec: '0.1.2',
375 silly cache add   spec: '0.1.2',
375 silly cache add   type: 'version' }
376 silly addNamed [email protected]
377 verbose addNamed "0.1.2" is a plain semver version for find-java-home
378 silly mapToRegistry name find-java-home
379 silly mapToRegistry using default registry
380 silly mapToRegistry registry https://registry.npmjs.org/
381 silly mapToRegistry uri https://registry.npmjs.org/find-java-home
382 verbose addNameVersion registry:https://registry.npmjs.org/find-java-home not in flight; fetching
383 verbose request uri https://registry.npmjs.org/nan
384 verbose request no auth needed
385 info attempt registry request try #1 at 8:47:09 AM
386 verbose etag "7ZNJE7CSHKCXQDJXAXFJDO4DJ"
387 http request GET https://registry.npmjs.org/nan
388 verbose request uri https://registry.npmjs.org/glob
389 verbose request no auth needed
390 info attempt registry request try #1 at 8:47:09 AM
391 verbose etag "BMQD6QS6ONVUD5Q6UUMK6VSM1"
392 http request GET https://registry.npmjs.org/glob
393 verbose request uri https://registry.npmjs.org/find-java-home
394 verbose request no auth needed
395 info attempt registry request try #1 at 8:47:09 AM
396 verbose etag "51KB4N978CYUVB1LAEFM0IJ2N"
397 http request GET https://registry.npmjs.org/find-java-home
398 http 304 https://registry.npmjs.org/nan
399 silly get cb [ 304,
399 silly get   { date: 'Wed, 05 Aug 2015 06:48:38 GMT',
399 silly get     via: '1.1 varnish',
399 silly get     'cache-control': 'max-age=60',
399 silly get     etag: '"7ZNJE7CSHKCXQDJXAXFJDO4DJ"',
399 silly get     age: '19',
399 silly get     connection: 'keep-alive',
399 silly get     'x-served-by': 'cache-lcy1134-LCY',
399 silly get     'x-cache': 'HIT',
399 silly get     'x-cache-hits': '1',
399 silly get     'x-timer': 'S1438757318.331430,VS0,VE0',
399 silly get     vary: 'Accept' } ]
400 verbose etag https://registry.npmjs.org/nan from cache
401 verbose get saving nan to /.npm/registry.npmjs.org/nan/.cache.json
402 silly cache afterAdd [email protected]
403 verbose afterAdd /.npm/nan/1.4.1/package/package.json not in flight; writing
404 http 304 https://registry.npmjs.org/find-java-home
405 silly get cb [ 304,
405 silly get   { date: 'Wed, 05 Aug 2015 06:48:38 GMT',
405 silly get     via: '1.1 varnish',
405 silly get     'cache-control': 'max-age=60',
405 silly get     etag: '"51KB4N978CYUVB1LAEFM0IJ2N"',
405 silly get     age: '39',
405 silly get     connection: 'keep-alive',
405 silly get     'x-served-by': 'cache-lcy1134-LCY',
405 silly get     'x-cache': 'HIT',
405 silly get     'x-cache-hits': '1',
405 silly get     'x-timer': 'S1438757318.344304,VS0,VE0',
405 silly get     vary: 'Accept' } ]
406 verbose etag https://registry.npmjs.org/find-java-home from cache
407 verbose get saving find-java-home to /.npm/registry.npmjs.org/find-java-home/.cache.json
408 verbose afterAdd /.npm/nan/1.4.1/package/package.json written
409 silly cache afterAdd [email protected]
410 verbose afterAdd /.npm/find-java-home/0.1.2/package/package.json not in flight; writing
411 http 304 https://registry.npmjs.org/glob
412 silly get cb [ 304,
412 silly get   { date: 'Wed, 05 Aug 2015 06:48:38 GMT',
412 silly get     via: '1.1 varnish',
412 silly get     'cache-control': 'max-age=60',
412 silly get     etag: '"BMQD6QS6ONVUD5Q6UUMK6VSM1"',
412 silly get     age: '41',
412 silly get     connection: 'keep-alive',
412 silly get     'x-served-by': 'cache-lcy1123-LCY',
412 silly get     'x-cache': 'HIT',
412 silly get     'x-cache-hits': '3',
412 silly get     'x-timer': 'S1438757318.357783,VS0,VE0',
412 silly get     vary: 'Accept' } ]
413 verbose etag https://registry.npmjs.org/glob from cache
414 verbose get saving glob to /.npm/registry.npmjs.org/glob/.cache.json
415 verbose afterAdd /.npm/find-java-home/0.1.2/package/package.json written
416 silly addNameRange number 2 { name: 'glob', range: '>=3.2.9 <3.3.0', hasData: true }
417 silly addNameRange versions [ 'glob',
417 silly addNameRange   [ '1.1.0',
417 silly addNameRange     '2.0.9',
417 silly addNameRange     '2.0.8',
417 silly addNameRange     '2.0.7',
417 silly addNameRange     '2.1.0',
417 silly addNameRange     '3.0.0',
417 silly addNameRange     '3.0.1',
417 silly addNameRange     '3.1.0',
417 silly addNameRange     '3.1.1',
417 silly addNameRange     '3.1.2',
417 silly addNameRange     '3.1.3',
417 silly addNameRange     '3.1.4',
417 silly addNameRange     '3.1.5',
417 silly addNameRange     '3.1.6',
417 silly addNameRange     '3.1.7',
417 silly addNameRange     '3.1.9',
417 silly addNameRange     '3.1.10',
417 silly addNameRange     '3.1.11',
417 silly addNameRange     '3.1.12',
417 silly addNameRange     '3.1.13',
417 silly addNameRange     '3.1.14',
417 silly addNameRange     '3.1.15',
417 silly addNameRange     '3.1.16',
417 silly addNameRange     '3.1.17',
417 silly addNameRange     '3.1.18',
417 silly addNameRange     '3.1.19',
417 silly addNameRange     '3.1.20',
417 silly addNameRange     '3.1.21',
417 silly addNameRange     '3.2.0',
417 silly addNameRange     '3.2.1',
417 silly addNameRange     '3.2.3',
417 silly addNameRange     '3.2.4',
417 silly addNameRange     '3.2.5',
417 silly addNameRange     '3.2.6',
417 silly addNameRange     '3.2.7',
417 silly addNameRange     '3.2.8',
417 silly addNameRange     '3.2.9',
417 silly addNameRange     '3.2.10',
417 silly addNameRange     '3.2.11',
417 silly addNameRange     '4.0.0',
417 silly addNameRange     '4.0.1',
417 silly addNameRange     '4.0.2',
417 silly addNameRange     '4.0.3',
417 silly addNameRange     '4.0.4',
417 silly addNameRange     '4.0.5',
417 silly addNameRange     '4.0.6',
417 silly addNameRange     '4.1.2-beta',
417 silly addNameRange     '4.1.2',
417 silly addNameRange     '4.1.3',
417 silly addNameRange     '4.1.4',
417 silly addNameRange     '4.1.5',
417 silly addNameRange     '4.1.6',
417 silly addNameRange     '4.2.0',
417 silly addNameRange     '4.2.1',
417 silly addNameRange     '4.2.2',
417 silly addNameRange     '4.3.0',
417 silly addNameRange     '4.3.1',
417 silly addNameRange     '4.3.2',
417 silly addNameRange     '4.3.3',
417 silly addNameRange     '4.3.4',
417 silly addNameRange     '4.3.5',
417 silly addNameRange     '4.4.0',
417 silly addNameRange     '4.4.2',
417 silly addNameRange     '4.5.0',
417 silly addNameRange     '5.0.0',
417 silly addNameRange     '4.5.1',
417 silly addNameRange     '5.0.1',
417 silly addNameRange     '4.5.2',
417 silly addNameRange     '5.0.2',
417 silly addNameRange     '4.5.3',
417 silly addNameRange     '5.0.3',
417 silly addNameRange     '5.0.4',
417 silly addNameRange     '5.0.5',
417 silly addNameRange     '5.0.6',
417 silly addNameRange     '5.0.7',
417 silly addNameRange     '5.0.9',
417 silly addNameRange     '5.0.10',
417 silly addNameRange     '5.0.11',
417 silly addNameRange     '5.0.12',
417 silly addNameRange     '5.0.13',
417 silly addNameRange     '5.0.14' ] ]
418 silly addNamed [email protected]
419 verbose addNamed "3.2.11" is a plain semver version for glob
420 silly cache afterAdd [email protected]
421 verbose afterAdd /.npm/glob/3.2.11/package/package.json not in flight; writing
422 verbose afterAdd /.npm/glob/3.2.11/package/package.json written
423 silly install resolved [ { name: 'nan',
423 silly install resolved     version: '1.4.1',
423 silly install resolved     description: 'Native Abstractions for Node.js: C++ header for Node 0.8->0.12 compatibility',
423 silly install resolved     main: 'include_dirs.js',
423 silly install resolved     repository: { type: 'git', url: 'git://github.com/rvagg/nan.git' },
423 silly install resolved     scripts:
423 silly install resolved      { test: 'tap --gc test/js/*-test.js',
423 silly install resolved        'rebuild-tests': 'node-gyp rebuild --directory test' },
423 silly install resolved     contributors: [ [Object], [Object], [Object], [Object], [Object], [Object] ],
423 silly install resolved     devDependencies:
423 silly install resolved      { bindings: '~1.2.1',
423 silly install resolved        'node-gyp': '~1.0.2',
423 silly install resolved        tap: '~0.4.13',
423 silly install resolved        xtend: '~4.0.0' },
423 silly install resolved     license: 'MIT',
423 silly install resolved     bugs: { url: 'https://github.com/rvagg/nan/issues' },
423 silly install resolved     homepage: 'https://github.com/rvagg/nan',
423 silly install resolved     _id: '[email protected]',
423 silly install resolved     _shasum: '0a2bb562c558b440005b1f7eb8b31ccbdb565d5f',
423 silly install resolved     _from: '[email protected]',
423 silly install resolved     _npmVersion: '1.4.9',
423 silly install resolved     _npmUser: { name: 'kkoopa', email: '[email protected]' },
423 silly install resolved     maintainers: [ [Object], [Object] ],
423 silly install resolved     dist:
423 silly install resolved      { shasum: '0a2bb562c558b440005b1f7eb8b31ccbdb565d5f',
423 silly install resolved        tarball: 'http://registry.npmjs.org/nan/-/nan-1.4.1.tgz' },
423 silly install resolved     directories: {},
423 silly install resolved     _resolved: 'https://registry.npmjs.org/nan/-/nan-1.4.1.tgz',
423 silly install resolved     readme: 'ERROR: No README data found!' },
423 silly install resolved   { name: 'find-java-home',
423 silly install resolved     version: '0.1.2',
423 silly install resolved     description: 'Find JAVA_HOME on any system',
423 silly install resolved     main: 'index.js',
423 silly install resolved     scripts: { test: 'mocha -r should test.js' },
423 silly install resolved     repository:
423 silly install resolved      { type: 'git',
423 silly install resolved        url: 'git+https://github.com/jsdevel/node-find-java-home.git' },
423 silly install resolved     dependencies: { which: '~1.0.5' },
423 silly install resolved     keywords: [ 'JAVA_HOME', 'find', 'java', 'home' ],
423 silly install resolved     author: { name: 'Joseph Spencer' },
423 silly install resolved     license: 'Apache 2.0',
423 silly install resolved     bugs: { url: 'https://github.com/jsdevel/node-find-java-home/issues' },
423 silly install resolved     homepage: 'https://github.com/jsdevel/node-find-java-home',
423 silly install resolved     devDependencies: { mocha: '~1.18.2', should: '~3.3.0' },
423 silly install resolved     gitHead: '68fe04f3784949e4c3bd7fb75126441b3952353a',
423 silly install resolved     _id: '[email protected]',
423 silly install resolved     _shasum: 'a09980abc584fb0d62f7cfba04a9397dc93316b6',
423 silly install resolved     _from: '[email protected]',
423 silly install resolved     _npmVersion: '1.4.21',
423 silly install resolved     _npmUser: { name: 'jsdevel', email: '[email protected]' },
423 silly install resolved     maintainers: [ [Object] ],
423 silly install resolved     dist:
423 silly install resolved      { shasum: 'a09980abc584fb0d62f7cfba04a9397dc93316b6',
423 silly install resolved        tarball: 'http://registry.npmjs.org/find-java-home/-/find-java-home-0.1.2.tgz' },
423 silly install resolved     directories: {},
423 silly install resolved     _resolved: 'https://registry.npmjs.org/find-java-home/-/find-java-home-0.1.2.tgz',
423 silly install resolved     readme: 'ERROR: No README data found!' },
423 silly install resolved   { author:
423 silly install resolved      { name: 'Isaac Z. Schlueter',
423 silly install resolved        email: '[email protected]',
423 silly install resolved        url: 'http://blog.izs.me/' },
423 silly install resolved     name: 'glob',
423 silly install resolved     description: 'a little globber',
423 silly install resolved     version: '3.2.11',
423 silly install resolved     repository: { type: 'git', url: 'git://github.com/isaacs/node-glob.git' },
423 silly install resolved     main: 'glob.js',
423 silly install resolved     engines: { node: '*' },
423 silly install resolved     dependencies: { inherits: '2', minimatch: '0.3' },
423 silly install resolved     devDependencies: { tap: '~0.4.0', mkdirp: '0', rimraf: '1' },
423 silly install resolved     scripts:
423 silly install resolved      { test: 'tap test/*.js',
423 silly install resolved        'test-regen': 'TEST_REGEN=1 node test/00-setup.js' },
423 silly install resolved     license: 'BSD',
423 silly install resolved     gitHead: '73f57e99510582b2024b762305970ebcf9b70aa2',
423 silly install resolved     bugs: { url: 'https://github.com/isaacs/node-glob/issues' },
423 silly install resolved     homepage: 'https://github.com/isaacs/node-glob',
423 silly install resolved     _id: '[email protected]',
423 silly install resolved     _shasum: '4a973f635b9190f715d10987d5c00fd2815ebe3d',
423 silly install resolved     _from: 'glob@>=3.2.9 <3.3.0',
423 silly install resolved     _npmVersion: '1.4.10',
423 silly install resolved     _npmUser: { name: 'isaacs', email: '[email protected]' },
423 silly install resolved     maintainers: [ [Object] ],
423 silly install resolved     dist:
423 silly install resolved      { shasum: '4a973f635b9190f715d10987d5c00fd2815ebe3d',
423 silly install resolved        tarball: 'http://registry.npmjs.org/glob/-/glob-3.2.11.tgz' },
423 silly install resolved     directories: {},
423 silly install resolved     _resolved: 'https://registry.npmjs.org/glob/-/glob-3.2.11.tgz',
423 silly install resolved     readme: 'ERROR: No README data found!' } ]
424 info install [email protected] into /elmec/node_apps/node_modules/jt400/node_modules/java
425 info install [email protected] into /elmec/node_apps/node_modules/jt400/node_modules/java
426 info install [email protected] into /elmec/node_apps/node_modules/jt400/node_modules/java
427 info installOne [email protected]
428 verbose installOne of nan to /elmec/node_apps/node_modules/jt400/node_modules/java not in flight; installing
429 info installOne [email protected]
430 verbose installOne of find-java-home to /elmec/node_apps/node_modules/jt400/node_modules/java not in flight; installing
431 info installOne [email protected]
432 verbose installOne of glob to /elmec/node_apps/node_modules/jt400/node_modules/java not in flight; installing
433 verbose lock using /.npm/_locks/nan-208caa4cc2283afe.lock for /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/nan
434 silly install write writing nan 1.4.1 to /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/nan
435 verbose lock using /.npm/_locks/find-java-home-13416991e91502b9.lock for /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/find-java-home
436 silly install write writing find-java-home 0.1.2 to /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/find-java-home
437 verbose lock using /.npm/_locks/glob-8bccc2a9e1a40b8a.lock for /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/glob
438 silly install write writing glob 3.2.11 to /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/glob
439 verbose unbuild node_modules/jt400/node_modules/java/node_modules/nan
440 verbose unbuild node_modules/jt400/node_modules/java/node_modules/find-java-home
441 silly gentlyRm /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/nan is being purged from base /elmec/node_apps
442 verbose gentlyRm don't care about contents; nuking /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/nan
443 verbose unbuild node_modules/jt400/node_modules/java/node_modules/glob
444 verbose tar unpack /.npm/nan/1.4.1/package.tgz
445 verbose tar unpacking to /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/nan
446 silly gentlyRm /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/nan is being purged
447 verbose gentlyRm don't care about contents; nuking /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/nan
448 silly gentlyRm /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/find-java-home is being purged from base /elmec/node_apps
449 verbose gentlyRm don't care about contents; nuking /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/find-java-home
450 silly gunzTarPerm modes [ '755', '644' ]
451 verbose tar unpack /.npm/find-java-home/0.1.2/package.tgz
452 verbose tar unpacking to /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/find-java-home
453 silly gentlyRm /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/find-java-home is being purged
454 verbose gentlyRm don't care about contents; nuking /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/find-java-home
455 silly gentlyRm /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/glob is being purged from base /elmec/node_apps
456 verbose gentlyRm don't care about contents; nuking /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/glob
457 silly gunzTarPerm modes [ '755', '644' ]
458 verbose tar unpack /.npm/glob/3.2.11/package.tgz
459 verbose tar unpacking to /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/glob
460 silly gentlyRm /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/glob is being purged
461 verbose gentlyRm don't care about contents; nuking /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/glob
462 silly gunzTarPerm modes [ '755', '644' ]
463 silly gunzTarPerm extractEntry package.json
464 silly gunzTarPerm modified mode [ 'package.json', 436, 420 ]
465 silly gunzTarPerm extractEntry package.json
466 silly gunzTarPerm extractEntry package.json
467 silly gunzTarPerm modified mode [ 'package.json', 436, 420 ]
468 silly gunzTarPerm extractEntry include_dirs.js
469 silly gunzTarPerm modified mode [ 'include_dirs.js', 436, 420 ]
470 silly gunzTarPerm extractEntry appveyor.yml
471 silly gunzTarPerm modified mode [ 'appveyor.yml', 436, 420 ]
472 silly gunzTarPerm extractEntry .npmignore
473 silly gunzTarPerm extractEntry README.md
474 silly gunzTarPerm extractEntry .npmignore
475 silly gunzTarPerm modified mode [ '.npmignore', 436, 420 ]
476 silly gunzTarPerm extractEntry README.md
477 silly gunzTarPerm modified mode [ 'README.md', 436, 420 ]
478 silly gunzTarPerm extractEntry CHANGELOG.md
479 silly gunzTarPerm modified mode [ 'CHANGELOG.md', 436, 420 ]
480 silly gunzTarPerm extractEntry LICENSE.md
481 silly gunzTarPerm modified mode [ 'LICENSE.md', 436, 420 ]
482 silly gunzTarPerm extractEntry LICENSE
483 silly gunzTarPerm modified mode [ 'LICENSE', 436, 420 ]
484 silly gunzTarPerm extractEntry index.js
485 silly gunzTarPerm modified mode [ 'index.js', 436, 420 ]
486 silly gunzTarPerm extractEntry LICENSE
487 silly gunzTarPerm extractEntry glob.js
488 silly gunzTarPerm extractEntry .nan.h.un~
489 silly gunzTarPerm modified mode [ '.nan.h.un~', 436, 420 ]
490 silly gunzTarPerm extractEntry build/config.gypi
491 silly gunzTarPerm modified mode [ 'build/config.gypi', 436, 420 ]
492 silly gunzTarPerm extractEntry .dntrc
493 silly gunzTarPerm modified mode [ '.dntrc', 436, 420 ]
494 silly gunzTarPerm extractEntry nan.h
495 silly gunzTarPerm modified mode [ 'nan.h', 436, 420 ]
496 silly gunzTarPerm extractEntry nan.h.orig
497 silly gunzTarPerm modified mode [ 'nan.h.orig', 436, 420 ]
498 silly gunzTarPerm extractEntry .travis.yml
499 silly gunzTarPerm extractEntry test.js
500 silly gunzTarPerm modified mode [ 'test.js', 436, 420 ]
501 silly gunzTarPerm extractEntry .travis.yml
502 silly gunzTarPerm modified mode [ '.travis.yml', 436, 420 ]
503 silly gunzTarPerm extractEntry examples/g.js
504 silly gunzTarPerm extractEntry examples/usr-local.js
505 silly gunzTarPerm extractEntry test/00-setup.js
506 silly gunzTarPerm extractEntry test/cwd-test.js
507 silly gunzTarPerm extractEntry test/globstar-match.js
508 silly gunzTarPerm extractEntry test/mark.js
509 verbose write writing to /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/find-java-home/package.json
510 silly gunzTarPerm extractEntry test/stat.js
511 silly gunzTarPerm extractEntry test/bash-comparison.js
512 info preinstall [email protected]
513 verbose readDependencies loading dependencies from /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/find-java-home/package.json
514 silly prepareForInstallMany adding which@~1.0.5 from find-java-home dependencies
515 verbose readDependencies loading dependencies from /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/find-java-home/package.json
516 silly gunzTarPerm extractEntry test/pause-resume.js
517 silly gunzTarPerm extractEntry test/readme-issue.js
518 silly cache add args [ 'which@~1.0.5', null ]
519 verbose cache add spec which@~1.0.5
520 silly cache add parsed spec { raw: 'which@~1.0.5',
520 silly cache add   scope: null,
520 silly cache add   name: 'which',
520 silly cache add   rawSpec: '~1.0.5',
520 silly cache add   spec: '>=1.0.5 <1.1.0',
520 silly cache add   type: 'range' }
521 silly addNamed which@>=1.0.5 <1.1.0
522 verbose addNamed ">=1.0.5 <1.1.0" is a valid semver range for which
523 silly addNameRange { name: 'which', range: '>=1.0.5 <1.1.0', hasData: false }
524 silly mapToRegistry name which
525 silly mapToRegistry using default registry
526 silly mapToRegistry registry https://registry.npmjs.org/
527 silly mapToRegistry uri https://registry.npmjs.org/which
528 verbose addNameRange registry:https://registry.npmjs.org/which not in flight; fetching
529 verbose request uri https://registry.npmjs.org/which
530 verbose request no auth needed
531 info attempt registry request try #1 at 8:47:09 AM
532 verbose etag "96S32KNGR7RC2G6UDCTQWOHI9"
533 http request GET https://registry.npmjs.org/which
534 silly gunzTarPerm extractEntry test/root-nomount.js
535 silly gunzTarPerm extractEntry test/root.js
536 silly gunzTarPerm extractEntry test/new-glob-optional-options.js
537 silly gunzTarPerm extractEntry test/zz-cleanup.js
538 silly gunzTarPerm extractEntry test/nocase-nomagic.js
539 silly gunzTarPerm extractEntry test/bash-results.json
540 verbose write writing to /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/glob/package.json
541 info preinstall [email protected]
542 verbose readDependencies loading dependencies from /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/glob/package.json
543 silly prepareForInstallMany adding inherits@2 from glob dependencies
544 silly prepareForInstallMany adding [email protected] from glob dependencies
545 verbose readDependencies loading dependencies from /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/glob/package.json
546 verbose write writing to /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/nan/package.json
547 silly cache add args [ 'inherits@2', null ]
548 verbose cache add spec inherits@2
549 silly cache add parsed spec { raw: 'inherits@2',
549 silly cache add   scope: null,
549 silly cache add   name: 'inherits',
549 silly cache add   rawSpec: '2',
549 silly cache add   spec: '>=2.0.0 <3.0.0',
549 silly cache add   type: 'range' }
550 silly addNamed inherits@>=2.0.0 <3.0.0
551 verbose addNamed ">=2.0.0 <3.0.0" is a valid semver range for inherits
552 silly addNameRange { name: 'inherits', range: '>=2.0.0 <3.0.0', hasData: false }
553 silly mapToRegistry name inherits
554 silly mapToRegistry using default registry
555 silly mapToRegistry registry https://registry.npmjs.org/
556 silly mapToRegistry uri https://registry.npmjs.org/inherits
557 verbose addNameRange registry:https://registry.npmjs.org/inherits not in flight; fetching
558 silly cache add args [ '[email protected]', null ]
559 verbose cache add spec [email protected]
560 silly cache add parsed spec { raw: '[email protected]',
560 silly cache add   scope: null,
560 silly cache add   name: 'minimatch',
560 silly cache add   rawSpec: '0.3',
560 silly cache add   spec: '>=0.3.0 <0.4.0',
560 silly cache add   type: 'range' }
561 silly addNamed minimatch@>=0.3.0 <0.4.0
562 verbose addNamed ">=0.3.0 <0.4.0" is a valid semver range for minimatch
563 silly addNameRange { name: 'minimatch', range: '>=0.3.0 <0.4.0', hasData: false }
564 silly mapToRegistry name minimatch
565 silly mapToRegistry using default registry
566 silly mapToRegistry registry https://registry.npmjs.org/
567 silly mapToRegistry uri https://registry.npmjs.org/minimatch
568 verbose addNameRange registry:https://registry.npmjs.org/minimatch not in flight; fetching
569 verbose request uri https://registry.npmjs.org/inherits
570 verbose request no auth needed
571 info attempt registry request try #1 at 8:47:10 AM
572 verbose etag "DPT0HCFHSA8NG4H8MNHKEH1FI"
573 http request GET https://registry.npmjs.org/inherits
574 verbose request uri https://registry.npmjs.org/minimatch
575 verbose request no auth needed
576 info attempt registry request try #1 at 8:47:10 AM
577 verbose etag "DJA57W2ZBIS2VHNDSIYQZ6MY3"
578 http request GET https://registry.npmjs.org/minimatch
579 info preinstall [email protected]
580 verbose readDependencies loading dependencies from /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/nan/package.json
581 verbose readDependencies loading dependencies from /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/nan/package.json
582 silly install resolved []
583 verbose about to build /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/nan
584 info build /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/nan
585 info linkStuff [email protected]
586 silly linkStuff [email protected] has /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules as its parent node_modules
587 verbose linkBins [email protected]
588 verbose linkMans [email protected]
589 verbose rebuildBundles [email protected]
590 info install [email protected]
591 http 304 https://registry.npmjs.org/which
592 silly get cb [ 304,
592 silly get   { date: 'Wed, 05 Aug 2015 06:48:38 GMT',
592 silly get     via: '1.1 varnish',
592 silly get     'cache-control': 'max-age=60',
592 silly get     etag: '"96S32KNGR7RC2G6UDCTQWOHI9"',
592 silly get     age: '52',
592 silly get     connection: 'keep-alive',
592 silly get     'x-served-by': 'cache-lcy1127-LCY',
592 silly get     'x-cache': 'HIT',
592 silly get     'x-cache-hits': '3',
592 silly get     'x-timer': 'S1438757318.690605,VS0,VE0',
592 silly get     vary: 'Accept' } ]
593 verbose etag https://registry.npmjs.org/which from cache
594 verbose get saving which to /.npm/registry.npmjs.org/which/.cache.json
595 info postinstall [email protected]
596 verbose unlock done using /.npm/_locks/nan-208caa4cc2283afe.lock for /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/nan
597 silly addNameRange number 2 { name: 'which', range: '>=1.0.5 <1.1.0', hasData: true }
598 silly addNameRange versions [ 'which',
598 silly addNameRange   [ '1.0.0',
598 silly addNameRange     '1.0.1',
598 silly addNameRange     '1.0.2',
598 silly addNameRange     '1.0.3',
598 silly addNameRange     '1.0.5',
598 silly addNameRange     '1.0.6',
598 silly addNameRange     '1.0.7',
598 silly addNameRange     '1.0.8',
598 silly addNameRange     '1.0.9',
598 silly addNameRange     '1.1.0',
598 silly addNameRange     '1.1.1' ] ]
599 silly addNamed [email protected]
600 verbose addNamed "1.0.9" is a plain semver version for which
601 silly cache afterAdd [email protected]
602 verbose afterAdd /.npm/which/1.0.9/package/package.json not in flight; writing
603 verbose afterAdd /.npm/which/1.0.9/package/package.json written
604 silly install resolved [ { author:
604 silly install resolved      { name: 'Isaac Z. Schlueter',
604 silly install resolved        email: '[email protected]',
604 silly install resolved        url: 'http://blog.izs.me' },
604 silly install resolved     name: 'which',
604 silly install resolved     description: 'Like which(1) unix command. Find the first instance of an executable in the PATH.',
604 silly install resolved     version: '1.0.9',
604 silly install resolved     repository: { type: 'git', url: 'git://github.com/isaacs/node-which.git' },
604 silly install resolved     main: 'which.js',
604 silly install resolved     bin: { which: './bin/which' },
604 silly install resolved     license: 'ISC',
604 silly install resolved     gitHead: 'df3d52a0ecd5f366d550e0f14d67ca4d5e621bad',
604 silly install resolved     bugs: { url: 'https://github.com/isaacs/node-which/issues' },
604 silly install resolved     homepage: 'https://github.com/isaacs/node-which',
604 silly install resolved     _id: '[email protected]',
604 silly install resolved     scripts: {},
604 silly install resolved     _shasum: '460c1da0f810103d0321a9b633af9e575e64486f',
604 silly install resolved     _from: 'which@>=1.0.5 <1.1.0',
604 silly install resolved     _npmVersion: '2.6.0',
604 silly install resolved     _nodeVersion: '1.1.0',
604 silly install resolved     _npmUser: { name: 'isaacs', email: '[email protected]' },
604 silly install resolved     maintainers: [ [Object] ],
604 silly install resolved     dist:
604 silly install resolved      { shasum: '460c1da0f810103d0321a9b633af9e575e64486f',
604 silly install resolved        tarball: 'http://registry.npmjs.org/which/-/which-1.0.9.tgz' },
604 silly install resolved     directories: {},
604 silly install resolved     _resolved: 'https://registry.npmjs.org/which/-/which-1.0.9.tgz',
604 silly install resolved     readme: 'ERROR: No README data found!' } ]
605 info install [email protected] into /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/find-java-home
606 info installOne [email protected]
607 verbose installOne of which to /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/find-java-home not in flight; installing
608 verbose lock using /.npm/_locks/which-289ea6acd0316f00.lock for /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/find-java-home/node_modules/which
609 silly install write writing which 1.0.9 to /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/find-java-home/node_modules/which
610 verbose unbuild node_modules/jt400/node_modules/java/node_modules/find-java-home/node_modules/which
611 silly gentlyRm /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/find-java-home/node_modules/which is being purged from base /elmec/node_apps
612 verbose gentlyRm don't care about contents; nuking /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/find-java-home/node_modules/which
613 verbose tar unpack /.npm/which/1.0.9/package.tgz
614 verbose tar unpacking to /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/find-java-home/node_modules/which
615 silly gentlyRm /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/find-java-home/node_modules/which is being purged
616 verbose gentlyRm don't care about contents; nuking /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/find-java-home/node_modules/which
617 silly gunzTarPerm modes [ '755', '644' ]
618 silly gunzTarPerm extractEntry package.json
619 silly gunzTarPerm extractEntry README.md
620 silly gunzTarPerm extractEntry LICENSE
621 silly gunzTarPerm extractEntry which.js
622 silly gunzTarPerm extractEntry bin/which
623 verbose write writing to /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/find-java-home/node_modules/which/package.json
624 info preinstall [email protected]
625 verbose readDependencies loading dependencies from /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/find-java-home/node_modules/which/package.json
626 verbose readDependencies loading dependencies from /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/find-java-home/node_modules/which/package.json
627 silly install resolved []
628 verbose about to build /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/find-java-home/node_modules/which
629 info build /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/find-java-home/node_modules/which
630 http 304 https://registry.npmjs.org/minimatch
631 silly get cb [ 304,
631 silly get   { date: 'Wed, 05 Aug 2015 06:48:38 GMT',
631 silly get     via: '1.1 varnish',
631 silly get     'cache-control': 'max-age=60',
631 silly get     etag: '"DJA57W2ZBIS2VHNDSIYQZ6MY3"',
631 silly get     age: '21',
631 silly get     connection: 'keep-alive',
631 silly get     'x-served-by': 'cache-lcy1120-LCY',
631 silly get     'x-cache': 'HIT',
631 silly get     'x-cache-hits': '3',
631 silly get     'x-timer': 'S1438757318.799740,VS0,VE0',
631 silly get     vary: 'Accept' } ]
632 verbose etag https://registry.npmjs.org/minimatch from cache
633 verbose get saving minimatch to /.npm/registry.npmjs.org/minimatch/.cache.json
634 info linkStuff [email protected]
635 silly linkStuff [email protected] has /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/find-java-home/node_modules as its parent node_modules
636 verbose linkBins [email protected]
637 verbose link bins [ { which: './bin/which' },
637 verbose link bins   '/elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/find-java-home/node_modules/.bin',
637 verbose link bins   false ]
638 verbose linkMans [email protected]
639 verbose rebuildBundles [email protected]
640 silly gentlyRm /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/find-java-home/node_modules/.bin/which is being purged
641 verbose gentlyRm don't care about contents; nuking /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/find-java-home/node_modules/.bin/which
642 silly addNameRange number 2 { name: 'minimatch', range: '>=0.3.0 <0.4.0', hasData: true }
643 silly addNameRange versions [ 'minimatch',
643 silly addNameRange   [ '0.0.1',
643 silly addNameRange     '0.0.2',
643 silly addNameRange     '0.0.4',
643 silly addNameRange     '0.0.5',
643 silly addNameRange     '0.1.1',
643 silly addNameRange     '0.1.2',
643 silly addNameRange     '0.1.3',
643 silly addNameRange     '0.1.4',
643 silly addNameRange     '0.1.5',
643 silly addNameRange     '0.2.0',
643 silly addNameRange     '0.2.2',
643 silly addNameRange     '0.2.3',
643 silly addNameRange     '0.2.4',
643 silly addNameRange     '0.2.5',
643 silly addNameRange     '0.2.6',
643 silly addNameRange     '0.2.7',
643 silly addNameRange     '0.2.8',
643 silly addNameRange     '0.2.9',
643 silly addNameRange     '0.2.10',
643 silly addNameRange     '0.2.11',
643 silly addNameRange     '0.2.12',
643 silly addNameRange     '0.2.13',
643 silly addNameRange     '0.2.14',
643 silly addNameRange     '0.3.0',
643 silly addNameRange     '0.4.0',
643 silly addNameRange     '1.0.0',
643 silly addNameRange     '2.0.0',
643 silly addNameRange     '2.0.1',
643 silly addNameRange     '2.0.2',
643 silly addNameRange     '2.0.3',
643 silly addNameRange     '2.0.4',
643 silly addNameRange     '2.0.5',
643 silly addNameRange     '2.0.6',
643 silly addNameRange     '2.0.7',
643 silly addNameRange     '2.0.8',
643 silly addNameRange     '2.0.9',
643 silly addNameRange     '2.0.10' ] ]
644 silly addNamed [email protected]
645 verbose addNamed "0.3.0" is a plain semver version for minimatch
646 info install [email protected]
647 silly cache afterAdd [email protected]
648 verbose afterAdd /.npm/minimatch/0.3.0/package/package.json not in flight; writing
649 info postinstall [email protected]
650 http 304 https://registry.npmjs.org/inherits
651 silly get cb [ 304,
651 silly get   { date: 'Wed, 05 Aug 2015 06:48:38 GMT',
651 silly get     via: '1.1 varnish',
651 silly get     'cache-control': 'max-age=60',
651 silly get     etag: '"DPT0HCFHSA8NG4H8MNHKEH1FI"',
651 silly get     age: '12',
651 silly get     connection: 'keep-alive',
651 silly get     'x-served-by': 'cache-lcy1120-LCY',
651 silly get     'x-cache': 'HIT',
651 silly get     'x-cache-hits': '1',
651 silly get     'x-timer': 'S1438757318.829313,VS0,VE0',
651 silly get     vary: 'Accept' } ]
652 verbose etag https://registry.npmjs.org/inherits from cache
653 verbose get saving inherits to /.npm/registry.npmjs.org/inherits/.cache.json
654 verbose unlock done using /.npm/_locks/which-289ea6acd0316f00.lock for /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/find-java-home/node_modules/which
655 verbose about to build /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/find-java-home
656 info build /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/find-java-home
657 verbose afterAdd /.npm/minimatch/0.3.0/package/package.json written
658 info linkStuff [email protected]
659 silly linkStuff [email protected] has /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules as its parent node_modules
660 silly addNameRange number 2 { name: 'inherits', range: '>=2.0.0 <3.0.0', hasData: true }
661 silly addNameRange versions [ 'inherits', [ '1.0.0', '2.0.0', '2.0.1' ] ]
662 silly addNamed [email protected]
663 verbose addNamed "2.0.1" is a plain semver version for inherits
664 verbose linkBins [email protected]
665 verbose linkMans [email protected]
666 verbose rebuildBundles [email protected]
667 verbose rebuildBundles [ '.bin', 'which' ]
668 info install [email protected]
669 info postinstall [email protected]
670 silly cache afterAdd [email protected]
671 verbose afterAdd /.npm/inherits/2.0.1/package/package.json not in flight; writing
672 verbose unlock done using /.npm/_locks/find-java-home-13416991e91502b9.lock for /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/find-java-home
673 verbose afterAdd /.npm/inherits/2.0.1/package/package.json written
674 silly install resolved [ { author:
674 silly install resolved      { name: 'Isaac Z. Schlueter',
674 silly install resolved        email: '[email protected]',
674 silly install resolved        url: 'http://blog.izs.me' },
674 silly install resolved     name: 'minimatch',
674 silly install resolved     description: 'a glob matcher in javascript',
674 silly install resolved     version: '0.3.0',
674 silly install resolved     repository: { type: 'git', url: 'git://github.com/isaacs/minimatch.git' },
674 silly install resolved     main: 'minimatch.js',
674 silly install resolved     scripts: { test: 'tap test/*.js' },
674 silly install resolved     engines: { node: '*' },
674 silly install resolved     dependencies: { 'lru-cache': '2', sigmund: '~1.0.0' },
674 silly install resolved     devDependencies: { tap: '' },
674 silly install resolved     license:
674 silly install resolved      { type: 'MIT',
674 silly install resolved        url: 'http://github.com/isaacs/minimatch/raw/master/LICENSE' },
674 silly install resolved     bugs: { url: 'https://github.com/isaacs/minimatch/issues' },
674 silly install resolved     homepage: 'https://github.com/isaacs/minimatch',
674 silly install resolved     _id: '[email protected]',
674 silly install resolved     _shasum: '275d8edaac4f1bb3326472089e7949c8394699dd',
674 silly install resolved     _from: 'minimatch@>=0.3.0 <0.4.0',
674 silly install resolved     _npmVersion: '1.4.10',
674 silly install resolved     _npmUser: { name: 'isaacs', email: '[email protected]' },
674 silly install resolved     maintainers: [ [Object] ],
674 silly install resolved     dist:
674 silly install resolved      { shasum: '275d8edaac4f1bb3326472089e7949c8394699dd',
674 silly install resolved        tarball: 'http://registry.npmjs.org/minimatch/-/minimatch-0.3.0.tgz' },
674 silly install resolved     directories: {},
674 silly install resolved     _resolved: 'https://registry.npmjs.org/minimatch/-/minimatch-0.3.0.tgz',
674 silly install resolved     readme: 'ERROR: No README data found!' },
674 silly install resolved   { name: 'inherits',
674 silly install resolved     description: 'Browser-friendly inheritance fully compatible with standard node.js inherits()',
674 silly install resolved     version: '2.0.1',
674 silly install resolved     keywords:
674 silly install resolved      [ 'inheritance',
674 silly install resolved        'class',
674 silly install resolved        'klass',
674 silly install resolved        'oop',
674 silly install resolved        'object-oriented',
674 silly install resolved        'inherits',
674 silly install resolved        'browser',
674 silly install resolved        'browserify' ],
674 silly install resolved     main: './inherits.js',
674 silly install resolved     browser: './inherits_browser.js',
674 silly install resolved     repository: { type: 'git', url: 'git://github.com/isaacs/inherits.git' },
674 silly install resolved     license: 'ISC',
674 silly install resolved     scripts: { test: 'node test' },
674 silly install resolved     bugs: { url: 'https://github.com/isaacs/inherits/issues' },
674 silly install resolved     _id: '[email protected]',
674 silly install resolved     dist:
674 silly install resolved      { shasum: 'b17d08d326b4423e568eff719f91b0b1cbdf69f1',
674 silly install resolved        tarball: 'http://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz' },
674 silly install resolved     _from: 'inherits@>=2.0.0 <3.0.0',
674 silly install resolved     _npmVersion: '1.3.8',
674 silly install resolved     _npmUser: { name: 'isaacs', email: '[email protected]' },
674 silly install resolved     maintainers: [ [Object] ],
674 silly install resolved     directories: {},
674 silly install resolved     _shasum: 'b17d08d326b4423e568eff719f91b0b1cbdf69f1',
674 silly install resolved     _resolved: 'https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz',
674 silly install resolved     readme: 'ERROR: No README data found!',
674 silly install resolved     homepage: 'https://github.com/isaacs/inherits#readme' } ]
675 info install [email protected] into /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/glob
676 info install [email protected] into /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/glob
677 info installOne [email protected]
678 verbose installOne of minimatch to /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/glob not in flight; installing
679 info installOne [email protected]
680 verbose installOne of inherits to /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/glob not in flight; installing
681 verbose lock using /.npm/_locks/minimatch-f1dfc0f08db55871.lock for /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/glob/node_modules/minimatch
682 silly install write writing minimatch 0.3.0 to /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/glob/node_modules/minimatch
683 verbose lock using /.npm/_locks/inherits-e163b475a501362d.lock for /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/glob/node_modules/inherits
684 silly install write writing inherits 2.0.1 to /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/glob/node_modules/inherits
685 verbose unbuild node_modules/jt400/node_modules/java/node_modules/glob/node_modules/minimatch
686 verbose unbuild node_modules/jt400/node_modules/java/node_modules/glob/node_modules/inherits
687 silly gentlyRm /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/glob/node_modules/minimatch is being purged from base /elmec/node_apps
688 verbose gentlyRm don't care about contents; nuking /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/glob/node_modules/minimatch
689 silly gentlyRm /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/glob/node_modules/inherits is being purged from base /elmec/node_apps
690 verbose gentlyRm don't care about contents; nuking /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/glob/node_modules/inherits
691 verbose tar unpack /.npm/minimatch/0.3.0/package.tgz
692 verbose tar unpacking to /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/glob/node_modules/minimatch
693 silly gentlyRm /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/glob/node_modules/minimatch is being purged
694 verbose gentlyRm don't care about contents; nuking /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/glob/node_modules/minimatch
695 verbose tar unpack /.npm/inherits/2.0.1/package.tgz
696 verbose tar unpacking to /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/glob/node_modules/inherits
697 silly gentlyRm /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/glob/node_modules/inherits is being purged
698 verbose gentlyRm don't care about contents; nuking /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/glob/node_modules/inherits
699 silly gunzTarPerm modes [ '755', '644' ]
700 silly gunzTarPerm modes [ '755', '644' ]
701 silly gunzTarPerm extractEntry package.json
702 silly gunzTarPerm extractEntry package.json
703 silly gunzTarPerm extractEntry .npmignore
704 silly gunzTarPerm extractEntry README.md
705 silly gunzTarPerm extractEntry README.md
706 silly gunzTarPerm extractEntry LICENSE
707 silly gunzTarPerm extractEntry inherits.js
708 silly gunzTarPerm extractEntry inherits_browser.js
709 silly gunzTarPerm extractEntry LICENSE
710 silly gunzTarPerm extractEntry minimatch.js
711 silly gunzTarPerm extractEntry test/basic.js
712 silly gunzTarPerm extractEntry test.js
713 silly gunzTarPerm extractEntry test/brace-expand.js
714 silly gunzTarPerm extractEntry test/caching.js
715 silly gunzTarPerm extractEntry test/defaults.js
716 silly gunzTarPerm extractEntry test/extglob-ending-with-state-char.js
717 verbose write writing to /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/glob/node_modules/inherits/package.json
718 info preinstall [email protected]
719 verbose readDependencies loading dependencies from /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/glob/node_modules/inherits/package.json
720 verbose readDependencies loading dependencies from /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/glob/node_modules/inherits/package.json
721 silly install resolved []
722 verbose about to build /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/glob/node_modules/inherits
723 info build /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/glob/node_modules/inherits
724 info linkStuff [email protected]
725 silly linkStuff [email protected] has /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/glob/node_modules as its parent node_modules
726 verbose linkBins [email protected]
727 verbose linkMans [email protected]
728 verbose rebuildBundles [email protected]
729 info install [email protected]
730 info postinstall [email protected]
731 verbose unlock done using /.npm/_locks/inherits-e163b475a501362d.lock for /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/glob/node_modules/inherits
732 verbose write writing to /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/glob/node_modules/minimatch/package.json
733 info preinstall [email protected]
734 verbose readDependencies loading dependencies from /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/glob/node_modules/minimatch/package.json
735 silly prepareForInstallMany adding lru-cache@2 from minimatch dependencies
736 silly prepareForInstallMany adding sigmund@~1.0.0 from minimatch dependencies
737 verbose readDependencies loading dependencies from /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/glob/node_modules/minimatch/package.json
738 silly cache add args [ 'lru-cache@2', null ]
739 verbose cache add spec lru-cache@2
740 silly cache add args [ 'sigmund@~1.0.0', null ]
741 verbose cache add spec sigmund@~1.0.0
742 silly cache add parsed spec { raw: 'lru-cache@2',
742 silly cache add   scope: null,
742 silly cache add   name: 'lru-cache',
742 silly cache add   rawSpec: '2',
742 silly cache add   spec: '>=2.0.0 <3.0.0',
742 silly cache add   type: 'range' }
743 silly addNamed lru-cache@>=2.0.0 <3.0.0
744 verbose addNamed ">=2.0.0 <3.0.0" is a valid semver range for lru-cache
745 silly addNameRange { name: 'lru-cache', range: '>=2.0.0 <3.0.0', hasData: false }
746 silly mapToRegistry name lru-cache
747 silly mapToRegistry using default registry
748 silly mapToRegistry registry https://registry.npmjs.org/
749 silly mapToRegistry uri https://registry.npmjs.org/lru-cache
750 verbose addNameRange registry:https://registry.npmjs.org/lru-cache not in flight; fetching
751 silly cache add parsed spec { raw: 'sigmund@~1.0.0',
751 silly cache add   scope: null,
751 silly cache add   name: 'sigmund',
751 silly cache add   rawSpec: '~1.0.0',
751 silly cache add   spec: '>=1.0.0 <1.1.0',
751 silly cache add   type: 'range' }
752 silly addNamed sigmund@>=1.0.0 <1.1.0
753 verbose addNamed ">=1.0.0 <1.1.0" is a valid semver range for sigmund
754 silly addNameRange { name: 'sigmund', range: '>=1.0.0 <1.1.0', hasData: false }
755 silly mapToRegistry name sigmund
756 silly mapToRegistry using default registry
757 silly mapToRegistry registry https://registry.npmjs.org/
758 silly mapToRegistry uri https://registry.npmjs.org/sigmund
759 verbose addNameRange registry:https://registry.npmjs.org/sigmund not in flight; fetching
760 verbose request uri https://registry.npmjs.org/lru-cache
761 verbose request no auth needed
762 info attempt registry request try #1 at 8:47:10 AM
763 verbose etag "982M5AFJC69RMSWQXQS5H8HP9"
764 http request GET https://registry.npmjs.org/lru-cache
765 verbose request uri https://registry.npmjs.org/sigmund
766 verbose request no auth needed
767 info attempt registry request try #1 at 8:47:10 AM
768 verbose etag "1TUX00X8YEKNFED6GGWS214S3"
769 http request GET https://registry.npmjs.org/sigmund
770 http 304 https://registry.npmjs.org/lru-cache
771 silly get cb [ 304,
771 silly get   { date: 'Wed, 05 Aug 2015 06:48:39 GMT',
771 silly get     via: '1.1 varnish',
771 silly get     'cache-control': 'max-age=60',
771 silly get     etag: '"982M5AFJC69RMSWQXQS5H8HP9"',
771 silly get     age: '13',
771 silly get     connection: 'keep-alive',
771 silly get     'x-served-by': 'cache-lcy1124-LCY',
771 silly get     'x-cache': 'HIT',
771 silly get     'x-cache-hits': '1',
771 silly get     'x-timer': 'S1438757319.114781,VS0,VE0',
771 silly get     vary: 'Accept' } ]
772 verbose etag https://registry.npmjs.org/lru-cache from cache
773 verbose get saving lru-cache to /.npm/registry.npmjs.org/lru-cache/.cache.json
774 silly addNameRange number 2 { name: 'lru-cache', range: '>=2.0.0 <3.0.0', hasData: true }
775 silly addNameRange versions [ 'lru-cache',
775 silly addNameRange   [ '1.0.1',
775 silly addNameRange     '1.0.2',
775 silly addNameRange     '1.0.3',
775 silly addNameRange     '1.0.4',
775 silly addNameRange     '1.0.5',
775 silly addNameRange     '1.0.6',
775 silly addNameRange     '1.1.0',
775 silly addNameRange     '1.1.1',
775 silly addNameRange     '2.0.0',
775 silly addNameRange     '2.0.1',
775 silly addNameRange     '2.0.2',
775 silly addNameRange     '2.0.3',
775 silly addNameRange     '2.0.4',
775 silly addNameRange     '2.1.0',
775 silly addNameRange     '2.2.0',
775 silly addNameRange     '2.2.1',
775 silly addNameRange     '2.2.2',
775 silly addNameRange     '2.2.4',
775 silly addNameRange     '2.3.0',
775 silly addNameRange     '2.3.1',
775 silly addNameRange     '2.5.0',
775 silly addNameRange     '2.5.1',
775 silly addNameRange     '2.5.2',
775 silly addNameRange     '2.6.0',
775 silly addNameRange     '2.6.1',
775 silly addNameRange     '2.6.2',
775 silly addNameRange     '2.6.3',
775 silly addNameRange     '2.6.4',
775 silly addNameRange     '2.6.5' ] ]
776 silly addNamed [email protected]
777 verbose addNamed "2.6.5" is a plain semver version for lru-cache
778 silly cache afterAdd [email protected]
779 verbose afterAdd /.npm/lru-cache/2.6.5/package/package.json not in flight; writing
780 verbose afterAdd /.npm/lru-cache/2.6.5/package/package.json written
781 http 304 https://registry.npmjs.org/sigmund
782 silly get cb [ 304,
782 silly get   { date: 'Wed, 05 Aug 2015 06:48:39 GMT',
782 silly get     via: '1.1 varnish',
782 silly get     'cache-control': 'max-age=60',
782 silly get     etag: '"1TUX00X8YEKNFED6GGWS214S3"',
782 silly get     age: '12',
782 silly get     connection: 'keep-alive',
782 silly get     'x-served-by': 'cache-lcy1129-LCY',
782 silly get     'x-cache': 'HIT',
782 silly get     'x-cache-hits': '5',
782 silly get     'x-timer': 'S1438757319.129747,VS0,VE0',
782 silly get     vary: 'Accept' } ]
783 verbose etag https://registry.npmjs.org/sigmund from cache
784 verbose get saving sigmund to /.npm/registry.npmjs.org/sigmund/.cache.json
785 silly addNameRange number 2 { name: 'sigmund', range: '>=1.0.0 <1.1.0', hasData: true }
786 silly addNameRange versions [ 'sigmund', [ '1.0.0', '1.0.1' ] ]
787 silly addNamed [email protected]
788 verbose addNamed "1.0.1" is a plain semver version for sigmund
789 silly cache afterAdd [email protected]
790 verbose afterAdd /.npm/sigmund/1.0.1/package/package.json not in flight; writing
791 verbose afterAdd /.npm/sigmund/1.0.1/package/package.json written
792 silly install resolved [ { name: 'lru-cache',
792 silly install resolved     description: 'A cache object that deletes the least-recently-used items.',
792 silly install resolved     version: '2.6.5',
792 silly install resolved     author: { name: 'Isaac Z. Schlueter', email: '[email protected]' },
792 silly install resolved     keywords: [ 'mru', 'lru', 'cache' ],
792 silly install resolved     scripts: { test: 'tap test --gc' },
792 silly install resolved     main: 'lib/lru-cache.js',
792 silly install resolved     repository:
792 silly install resolved      { type: 'git',
792 silly install resolved        url: 'git://github.com/isaacs/node-lru-cache.git' },
792 silly install resolved     devDependencies: { tap: '^1.2.0', weak: '' },
792 silly install resolved     license: 'ISC',
792 silly install resolved     gitHead: '7062a0c891bfb80a294be9217e4de0f882e75776',
792 silly install resolved     bugs: { url: 'https://github.com/isaacs/node-lru-cache/issues' },
792 silly install resolved     homepage: 'https://github.com/isaacs/node-lru-cache#readme',
792 silly install resolved     _id: '[email protected]',
792 silly install resolved     _shasum: 'e56d6354148ede8d7707b58d143220fd08df0fd5',
792 silly install resolved     _from: 'lru-cache@>=2.0.0 <3.0.0',
792 silly install resolved     _npmVersion: '3.0.0',
792 silly install resolved     _nodeVersion: '2.2.1',
792 silly install resolved     _npmUser: { name: 'isaacs', email: '[email protected]' },
792 silly install resolved     dist:
792 silly install resolved      { shasum: 'e56d6354148ede8d7707b58d143220fd08df0fd5',
792 silly install resolved        tarball: 'http://registry.npmjs.org/lru-cache/-/lru-cache-2.6.5.tgz' },
792 silly install resolved     maintainers: [ [Object], [Object] ],
792 silly install resolved     directories: {},
792 silly install resolved     _resolved: 'https://registry.npmjs.org/lru-cache/-/lru-cache-2.6.5.tgz',
792 silly install resolved     readme: 'ERROR: No README data found!' },
792 silly install resolved   { name: 'sigmund',
792 silly install resolved     version: '1.0.1',
792 silly install resolved     description: 'Quick and dirty signatures for Objects.',
792 silly install resolved     main: 'sigmund.js',
792 silly install resolved     directories: { test: 'test' },
792 silly install resolved     dependencies: {},
792 silly install resolved     devDependencies: { tap: '~0.3.0' },
792 silly install resolved     scripts: { test: 'tap test/*.js', bench: 'node bench.js' },
792 silly install resolved     repository: { type: 'git', url: 'git://github.com/isaacs/sigmund.git' },
792 silly install resolved     keywords: [ 'object', 'signature', 'key', 'data', 'psychoanalysis' ],
792 silly install resolved     author:
792 silly install resolved      { name: 'Isaac Z. Schlueter',
792 silly install resolved        email: '[email protected]',
792 silly install resolved        url: 'http://blog.izs.me/' },
792 silly install resolved     license: 'ISC',
792 silly install resolved     gitHead: '527f97aa5bb253d927348698c0cd3bb267d098c6',
792 silly install resolved     bugs: { url: 'https://github.com/isaacs/sigmund/issues' },
792 silly install resolved     homepage: 'https://github.com/isaacs/sigmund#readme',
792 silly install resolved     _id: '[email protected]',
792 silly install resolved     _shasum: '3ff21f198cad2175f9f3b781853fd94d0d19b590',
792 silly install resolved     _from: 'sigmund@>=1.0.0 <1.1.0',
792 silly install resolved     _npmVersion: '2.10.0',
792 silly install resolved     _nodeVersion: '2.0.1',
792 silly install resolved     _npmUser: { name: 'isaacs', email: '[email protected]' },
792 silly install resolved     dist:
792 silly install resolved      { shasum: '3ff21f198cad2175f9f3b781853fd94d0d19b590',
792 silly install resolved        tarball: 'http://registry.npmjs.org/sigmund/-/sigmund-1.0.1.tgz' },
792 silly install resolved     maintainers: [ [Object] ],
792 silly install resolved     _resolved: 'https://registry.npmjs.org/sigmund/-/sigmund-1.0.1.tgz',
792 silly install resolved     readme: 'ERROR: No README data found!' } ]
793 info install [email protected] into /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/glob/node_modules/minimatch
794 info install [email protected] into /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/glob/node_modules/minimatch
795 info installOne [email protected]
796 verbose installOne of lru-cache to /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/glob/node_modules/minimatch not in flight; installing
797 info installOne [email protected]
798 verbose installOne of sigmund to /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/glob/node_modules/minimatch not in flight; installing
799 verbose lock using /.npm/_locks/lru-cache-7050bccdc1821712.lock for /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/glob/node_modules/minimatch/node_modules/lru-cache
800 verbose lock using /.npm/_locks/sigmund-6c5e155fd05c7ea8.lock for /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/glob/node_modules/minimatch/node_modules/sigmund
801 silly install write writing lru-cache 2.6.5 to /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/glob/node_modules/minimatch/node_modules/lru-cache
802 silly install write writing sigmund 1.0.1 to /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/glob/node_modules/minimatch/node_modules/sigmund
803 verbose unbuild node_modules/jt400/node_modules/java/node_modules/glob/node_modules/minimatch/node_modules/lru-cache
804 verbose unbuild node_modules/jt400/node_modules/java/node_modules/glob/node_modules/minimatch/node_modules/sigmund
805 silly gentlyRm /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/glob/node_modules/minimatch/node_modules/lru-cache is being purged from base /elmec/node_apps
806 verbose gentlyRm don't care about contents; nuking /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/glob/node_modules/minimatch/node_modules/lru-cache
807 verbose tar unpack /.npm/lru-cache/2.6.5/package.tgz
808 verbose tar unpacking to /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/glob/node_modules/minimatch/node_modules/lru-cache
809 silly gentlyRm /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/glob/node_modules/minimatch/node_modules/lru-cache is being purged
810 verbose gentlyRm don't care about contents; nuking /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/glob/node_modules/minimatch/node_modules/lru-cache
811 silly gentlyRm /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/glob/node_modules/minimatch/node_modules/sigmund is being purged from base /elmec/node_apps
812 verbose gentlyRm don't care about contents; nuking /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/glob/node_modules/minimatch/node_modules/sigmund
813 silly gunzTarPerm modes [ '755', '644' ]
814 verbose tar unpack /.npm/sigmund/1.0.1/package.tgz
815 verbose tar unpacking to /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/glob/node_modules/minimatch/node_modules/sigmund
816 silly gentlyRm /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/glob/node_modules/minimatch/node_modules/sigmund is being purged
817 verbose gentlyRm don't care about contents; nuking /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/glob/node_modules/minimatch/node_modules/sigmund
818 silly gunzTarPerm modes [ '755', '644' ]
819 silly gunzTarPerm extractEntry package.json
820 silly gunzTarPerm extractEntry package.json
821 silly gunzTarPerm extractEntry .npmignore
822 silly gunzTarPerm extractEntry README.md
823 silly gunzTarPerm extractEntry README.md
824 silly gunzTarPerm extractEntry LICENSE
825 silly gunzTarPerm extractEntry LICENSE
826 silly gunzTarPerm extractEntry .travis.yml
827 silly gunzTarPerm extractEntry bench.js
828 silly gunzTarPerm extractEntry sigmund.js
829 silly gunzTarPerm extractEntry CONTRIBUTORS
830 silly gunzTarPerm extractEntry lib/lru-cache.js
831 silly gunzTarPerm extractEntry test/basic.js
832 silly gunzTarPerm extractEntry test/basic.js
833 silly gunzTarPerm extractEntry test/foreach.js
834 silly gunzTarPerm extractEntry test/memory-leak.js
835 verbose write writing to /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/glob/node_modules/minimatch/node_modules/sigmund/package.json
836 info preinstall [email protected]
837 verbose readDependencies loading dependencies from /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/glob/node_modules/minimatch/node_modules/sigmund/package.json
838 verbose readDependencies loading dependencies from /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/glob/node_modules/minimatch/node_modules/sigmund/package.json
839 silly install resolved []
840 verbose about to build /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/glob/node_modules/minimatch/node_modules/sigmund
841 info build /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/glob/node_modules/minimatch/node_modules/sigmund
842 info linkStuff [email protected]
843 silly linkStuff [email protected] has /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/glob/node_modules/minimatch/node_modules as its parent node_modules
844 verbose linkBins [email protected]
845 verbose linkMans [email protected]
846 verbose rebuildBundles [email protected]
847 info install [email protected]
848 info postinstall [email protected]
849 verbose unlock done using /.npm/_locks/sigmund-6c5e155fd05c7ea8.lock for /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/glob/node_modules/minimatch/node_modules/sigmund
850 verbose write writing to /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/glob/node_modules/minimatch/node_modules/lru-cache/package.json
851 info preinstall [email protected]
852 verbose readDependencies loading dependencies from /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/glob/node_modules/minimatch/node_modules/lru-cache/package.json
853 verbose readDependencies loading dependencies from /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/glob/node_modules/minimatch/node_modules/lru-cache/package.json
854 silly install resolved []
855 verbose about to build /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/glob/node_modules/minimatch/node_modules/lru-cache
856 info build /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/glob/node_modules/minimatch/node_modules/lru-cache
857 info linkStuff [email protected]
858 silly linkStuff [email protected] has /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/glob/node_modules/minimatch/node_modules as its parent node_modules
859 verbose linkBins [email protected]
860 verbose linkMans [email protected]
861 verbose rebuildBundles [email protected]
862 info install [email protected]
863 info postinstall [email protected]
864 verbose unlock done using /.npm/_locks/lru-cache-7050bccdc1821712.lock for /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/glob/node_modules/minimatch/node_modules/lru-cache
865 verbose about to build /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/glob/node_modules/minimatch
866 info build /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/glob/node_modules/minimatch
867 info linkStuff [email protected]
868 silly linkStuff [email protected] has /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/glob/node_modules as its parent node_modules
869 verbose linkBins [email protected]
870 verbose linkMans [email protected]
871 verbose rebuildBundles [email protected]
872 verbose rebuildBundles [ 'lru-cache', 'sigmund' ]
873 info install [email protected]
874 info postinstall [email protected]
875 verbose unlock done using /.npm/_locks/minimatch-f1dfc0f08db55871.lock for /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/glob/node_modules/minimatch
876 verbose about to build /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/glob
877 info build /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/glob
878 info linkStuff [email protected]
879 silly linkStuff [email protected] has /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules as its parent node_modules
880 verbose linkBins [email protected]
881 verbose linkMans [email protected]
882 verbose rebuildBundles [email protected]
883 verbose rebuildBundles [ 'inherits', 'minimatch' ]
884 info install [email protected]
885 info postinstall [email protected]
886 verbose unlock done using /.npm/_locks/glob-8bccc2a9e1a40b8a.lock for /elmec/node_apps/node_modules/jt400/node_modules/java/node_modules/glob
887 verbose about to build /elmec/node_apps/node_modules/jt400/node_modules/java
888 info build /elmec/node_apps/node_modules/jt400/node_modules/java
889 info linkStuff [email protected]
890 silly linkStuff [email protected] has /elmec/node_apps/node_modules/jt400/node_modules as its parent node_modules
891 verbose linkBins [email protected]
892 verbose linkMans [email protected]
893 verbose rebuildBundles [email protected]
894 verbose rebuildBundles [ 'find-java-home', 'glob', 'nan' ]
895 info install [email protected]
896 verbose unsafe-perm in lifecycle false
897 info [email protected] Failed to exec install script
898 verbose unlock done using /.npm/_locks/java-8dfcf9e12b222eb9.lock for /elmec/node_apps/node_modules/jt400/node_modules/java
899 verbose about to build /elmec/node_apps/node_modules/jt400
900 verbose unlock done using /.npm/_locks/jt400-b0cdc25ac805e7ec.lock for /elmec/node_apps/node_modules/jt400
901 verbose stack Error: [email protected] install: `node-gyp rebuild`
901 verbose stack Exit status 1
901 verbose stack     at EventEmitter.<anonymous> (/elmec/node/lib/node_modules/npm/lib/utils/lifecycle.js:213:16)
901 verbose stack     at EventEmitter.emit (events.js:110:17)
901 verbose stack     at ChildProcess.<anonymous> (/elmec/node/lib/node_modules/npm/lib/utils/spawn.js:24:14)
901 verbose stack     at ChildProcess.emit (events.js:110:17)
901 verbose stack     at maybeClose (child_process.js:1015:16)
901 verbose stack     at Process.ChildProcess._handle.onexit (child_process.js:1087:5)
902 verbose pkgid [email protected]
903 verbose cwd /elmec/node_apps
904 error AIX 1
905 error argv "/elmec/node/bin/node" "/elmec/node/bin/npm" "install" "--verbose" "jt400" "--javahome=/usr/java5/jre"
906 error node v0.12.7
907 error npm  v2.11.3
908 error code ELIFECYCLE
909 error [email protected] install: `node-gyp rebuild`
909 error Exit status 1
910 error Failed at the [email protected] install script 'node-gyp rebuild'.
910 error This is most likely a problem with the java package,
910 error not with npm itself.
910 error Tell the author that this fails on your system:
910 error     node-gyp rebuild
910 error You can get their info via:
910 error     npm owner ls java
910 error There is likely additional logging output above.
911 verbose exit [ 1, true ]
912 verbose unbuild node_modules/jt400/node_modules/java
913 info preuninstall [email protected]
914 info uninstall [email protected]
915 verbose unbuild rmStuff [email protected] from /elmec/node_apps/node_modules
916 verbose unbuild rmStuff in /elmec/node_apps/node_modules/jt400/node_modules
917 info postuninstall [email protected]
918 silly gentlyRm /elmec/node_apps/node_modules/jt400/node_modules/java is being purged from base /elmec/node_apps
919 verbose gentlyRm don't care about contents; nuking /elmec/node_apps/node_modules/jt400/node_modules/java
920 silly vacuum-fs purging /elmec/node_apps/node_modules/jt400/node_modules/java
921 silly vacuum-fs quitting because other entries in /elmec/node_apps/node_modules/jt400/node_modules
922 verbose unbuild node_modules/jt400
923 info preuninstall [email protected]
924 info uninstall [email protected]
925 verbose unbuild rmStuff [email protected] from /elmec/node_apps/node_modules
926 info postuninstall [email protected]
927 silly gentlyRm /elmec/node_apps/node_modules/jt400 is being purged from base /elmec/node_apps
928 verbose gentlyRm don't care about contents; nuking /elmec/node_apps/node_modules/jt400
929 silly vacuum-fs purging /elmec/node_apps/node_modules/jt400
930 silly vacuum-fs removing /elmec/node_apps/node_modules
931 silly vacuum-fs finished vacuuming up to /elmec/node_apps

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.