Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions lib/nexpect.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@
* (C) 2011, Elijah Insua, Marak Squires, Charlie Robbins.
*
*/

var spawn = require('child_process').spawn;
var spawn = require('cross-spawn');
var util = require('util');
var AssertionError = require('assert').AssertionError;

Expand Down
334 changes: 334 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 8 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"description": "Spawns and interacts with child processes using spawn / expect commands",
"version": "0.5.0",
"author": "Nodejitsu Inc. <info@nodejitsu.com>",
"license": "MIT",
"maintainers": [
"indexzero <charlie@nodejitsu.com>",
"AvianFlu <avianflu@nodejitsu.com>"
Expand All @@ -17,16 +18,19 @@
"child process",
"terminal"
],
"dependencies": {
"cross-spawn": "^6.0.5"
},
"devDependencies": {
"colors": "0.x.x",
"prompt": "~0.2.11",
"vows": "~0.5.x"
"colors": "^1.3.3",
"prompt": "^1.0.0",
"vows": "^0.8.2"
},
"main": "./lib/nexpect",
"scripts": {
"test": "vows --spec"
},
"engines": {
"node": ">=0.8.0"
"node": ">=6"
}
}
Loading