X-Git-Url: https://git.proxmox.com/?a=blobdiff_plain;f=package.json;h=065925b3a3fca6f5963ac67c00176bcf42d2a668;hb=cb5a452c904d2c6a757193888ff1b3801fd10cd8;hp=734bb6fb05ca4b69b71393bd11697713cfdc1913;hpb=0da4c9d90d138ae41f4fdc2f377cd6efeea5a539;p=mirror_xterm.js.git diff --git a/package.json b/package.json index 734bb6f..065925b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,7 @@ { "name": "xterm", - "version": "2.2.3", + "description": "Full xterm terminal, in your browser", + "version": "2.8.1", "ignore": [ "demo", "test", @@ -10,6 +11,8 @@ "repository": "https://github.com/sourcelair/xterm.js", "license": "MIT", "files": [ + "*.js", + "*.json", "dist/*.css", "dist/**/*.css", "dist/*.js", @@ -33,32 +36,44 @@ ], "devDependencies": { "@types/chai": "^3.4.34", + "@types/jsdom": "^11.0.1", "@types/mocha": "^2.2.33", "@types/node": "^6.0.41", "browserify": "^13.1.0", "chai": "3.5.0", "docdash": "0.4.0", - "exorcist": "^0.4.0", "express": "4.13.4", "express-ws": "2.0.0-rc.1", + "fs-extra": "^1.0.0", "glob": "^7.0.5", + "gulp": "^3.9.1", + "gulp-cli": "^1.2.2", + "gulp-coveralls": "^0.1.4", + "gulp-istanbul": "^1.1.1", + "gulp-mocha": "^3.0.1", + "gulp-sourcemaps": "1.9.1", + "gulp-typescript": "^3.1.3", "jsdoc": "3.4.3", - "mocha": "2.5.3", + "jsdom": "^11.1.0", + "merge-stream": "^1.0.1", + "node-pty": "^0.4.1", "nodemon": "1.10.2", - "pty.js": "0.3.1", - "sleep": "^3.0.1", "sorcery": "^0.10.0", "tslint": "^4.0.2", - "typescript": "^2.0.3" + "typescript": "~2.2.0", + "vinyl-buffer": "^1.0.0", + "vinyl-source-stream": "^1.1.0", + "gulp-util": "^3.0.8" }, "scripts": { "prestart": "npm run build", "start": "node demo/app", - "dev": "nodemon -e js,ts --watch src --watch demo --exec npm start", - "lint": "tslint src/**/*.ts", - "test": "mocha --recursive ./lib", + "dev": "nodemon -e js,ts,css --watch src --watch demo --exec npm start", + "lint": "tslint src/*.ts src/**/*.ts", + "test": "gulp test", "build:docs": "jsdoc -c jsdoc.json", - "build": "./bin/build", - "prepublish": "npm run build" + "build": "gulp build", + "prepublish": "npm run build", + "coveralls": "gulp coveralls" } }