/usr/lib/nodejs/coveralls/bin/coveralls.js is in node-coveralls 3.0.0-2.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | #!/usr/bin/env node
var handleInput = require('../lib/handleInput');
var logger = require('../lib/logger');
process.stdin.resume();
process.stdin.setEncoding('utf8');
var input = '';
process.stdin.on('data', function(chunk) {
input += chunk;
});
process.stdin.on('end', function() {
handleInput(input, function(err) {
if (err) {
throw err;
}
});
});
|