X-Git-Url: https://git.proxmox.com/?p=mirror_xterm.js.git;a=blobdiff_plain;f=package.json;h=b23f4a2c50039dd4869e0793dc99f5243dc066a3;hp=00817fbd1a8c743f1efce5ec2d44e0489688b0f2;hb=8ede1fc9d2d0ef91ffcc9ad53587f19cdc6d0427;hpb=ef407ae93adabacc06b76520f8e8097bbae14d71 diff --git a/package.json b/package.json index 00817fb..b23f4a2 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,30 +36,43 @@ ], "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" }, "scripts": { - "start": "nodemon --watch src --watch addons --watch demo --exec bash -c './bin/build && node demo/app'", - "lint": "tslint src/**/*.ts", - "test": "mocha --recursive ./lib", + "prestart": "npm run build", + "start": "node demo/app", + "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": "tsc" + "build": "gulp build", + "prepublish": "npm run build", + "coveralls": "gulp coveralls" } }