You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

105 lines
2.8 KiB

11 years ago
{
"name": "wetty.js",
7 years ago
"version": "1.0.3",
6 years ago
"description": "WeTTY = Web + TTY. Terminal access in browser over http/https",
"homepage": "https://github.com/butlerx/wetty",
"repository": {
"type": "git",
"url": "git://github.com/butlerx/wetty.git"
},
"author": "Cian Butler <butlerx@notthe.cloud> (https://github.com/butlerx)",
"license": "MIT",
"bugs": {
"url": "https://github.com/butlerx/wetty/issues"
},
"main": "index.js",
"scripts": {
"lint": "eslint --ext .js,.mjs .",
"build": "webpack",
"start": "node .",
6 years ago
"dev": "NODE_ENV=development concurrently --kill-others --success first \"webpack --watch\" \"nodemon .\"",
"prepublishOnly": "yarn build",
"precommit": "lint-staged"
},
"lint-staged": {
6 years ago
"*.{js,mjs}": [
"eslint --fix",
"git add"
],
"*.{json,scss,md}": [
"prettier --write",
"git add"
]
},
"bin": {
"wetty": "./index.js"
},
"engines": {
"node": ">=6.9"
},
"nodemonConfig": {
6 years ago
"ignore": [
"dist/*",
"src/*",
"*.json"
]
},
"preferGlobal": "true",
"dependencies": {
"@std/esm": "^0.12.1",
"compression": "^1.7.1",
"express": "^4.15.3",
"fs-extra": "^4.0.1",
"helmet": "^3.9.0",
"jsdoc-to-markdown": "^4.0.1",
"lodash": "^4.17.4",
"morgan": "^1.9.0",
"node-pty": "^0.7.4",
"optimist": "^0.6",
"serve-favicon": "^2.4.3",
"socket.io": "^2.0.4",
"socket.io-client": "^2.0.4",
"winston": "^3.0.0-rc1",
"xterm": "^3.0.1"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-lodash": "^3.3.2",
"babel-preset-env": "^1.6.1",
"concurrently": "^3.5.1",
"css-loader": "^0.28.8",
"eslint": "^4.18.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-prettier": "^2.6.0",
"extract-text-webpack-plugin": "^3.0.2",
"husky": "^0.14.3",
"lint-staged": "^6.1.1",
"node-sass": "^4.7.2",
"nodemon": "^1.14.10",
"prettier": "^1.10.2",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.1",
"uglifyjs-webpack-plugin": "^1.1.6",
"webpack": "^3.10.0"
6 years ago
},
"contributors": [
"Krishna Srinivas <krishna.srinivas@gmail.com>",
"Boyan Rabchev <boyan@rabchev.com>",
"Luca Milanesio <luca.milanesio@gmail.com>",
"Antonio Calatrava <antonio@antoniocalatrava.com>",
"Strubbl <github@linux4tw.de>",
"Jarrett Gilliam <jarrettgilliam@gmail.com>",
"Nathan LeClaire <nathan.leclaire@docker.com>",
"mirtouf <mirtouf@gmail.com>",
"nosemeocurrenada <nosemeocurrenada93@gmail.com>",
"Andreas Kloeckner <inform@tiker.net>",
"Imuli <i@imu.li>",
"James Turnbull <james@lovedthanlost.net>",
"Neale Pickett <neale@woozle.org>",
"Robert <robert@n5qm.com>"
]
11 years ago
}