Browse Source

Added Gruntfile

pull/15/head
Boyan Rabchev 10 years ago
parent
commit
fa4394fe8d
  1. 12
      Gruntfile.js
  2. 14
      package.json

12
Gruntfile.js

@ -0,0 +1,12 @@
module.exports = function (grunt) {
require('load-grunt-tasks')(grunt);
var config = {
};
grunt.initConfig(config);
grunt.registerTask('update-hterm', ['shell:greet:hello']);
};

14
package.json

@ -3,10 +3,18 @@
"version": "0.0.9", "version": "0.0.9",
"dependencies": { "dependencies": {
"express": "3.5.1", "express": "3.5.1",
"websocket": "", "websocket": "^1.0",
"pty.js": "git+https://github.com/terryschen/pty.js", "pty.js": "git+https://github.com/terryschen/pty.js",
"optimist": "", "optimist": "^0.6",
"waitpid": "" "waitpid": "^0.1"
},
"devDependencies": {
"load-grunt-tasks": "^3.0",
"grunt": "^0.4",
"grunt-shell": "^1.1",
"grunt-mkdir": "^0.1",
"grunt-git": "^0.3",
"grunt-contrib-clean": "^0.6"
}, },
"description": "Wetty = Web + tty. Terminal access in browser over http/https ", "description": "Wetty = Web + tty. Terminal access in browser over http/https ",
"main": "app.js", "main": "app.js",

Loading…
Cancel
Save