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.
71 lines
1.9 KiB
71 lines
1.9 KiB
{
|
|
"name": "wetty.js",
|
|
"version": "0.3.0",
|
|
"dependencies": {
|
|
"@std/esm": "^0.2.2",
|
|
"express": "^4.15.3",
|
|
"fs-extra": "^4.0.1",
|
|
"optimist": "^0.6",
|
|
"pre-commit": "^1.2.2",
|
|
"pty.js": "^0.3.1",
|
|
"serve-favicon": "^2.4.3",
|
|
"socket.io": "^1.3.7"
|
|
},
|
|
"devDependencies": {
|
|
"babel-cli": "6.24.1",
|
|
"babel-core": "6.24.1",
|
|
"babel-eslint": "7.2.3",
|
|
"babel-plugin-add-module-exports": "0.2.1",
|
|
"babel-plugin-es6-promise": "1.1.1",
|
|
"babel-plugin-syntax-async-functions": "6.13.0",
|
|
"babel-plugin-transform-async-to-generator": "6.24.1",
|
|
"babel-plugin-transform-object-assign": "6.22.0",
|
|
"babel-preset-es2015": "6.24.1",
|
|
"del": "^3.0.0",
|
|
"es6-promise": "^4.1.1",
|
|
"eslint": "3.19.0",
|
|
"eslint-config-airbnb": "^15.1.0",
|
|
"eslint-config-standard": "10.2.1",
|
|
"eslint-plugin-import": "^2.7.0",
|
|
"eslint-plugin-jsx-a11y": "^5.1.1",
|
|
"eslint-plugin-node": "^5.1.1",
|
|
"eslint-plugin-promise": "^3.5.0",
|
|
"eslint-plugin-react": "^7.1.0",
|
|
"eslint-plugin-standard": "^3.0.1",
|
|
"gulp": "^3.9.1",
|
|
"gulp-babel": "^6.1.2",
|
|
"gulp-concat": "^2.6.1",
|
|
"gulp-minify": "^1.0.0",
|
|
"gulp-shell": "^0.6.3"
|
|
},
|
|
"pre-commit": ["fix", "commit"],
|
|
"description": "Wetty = Web + tty. Terminal access in browser over http/https ",
|
|
"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"
|
|
},
|
|
"homepage": "https://github.com/butlerx/wetty",
|
|
"preferGlobal": "true",
|
|
"main": "app.js",
|
|
"bin": {
|
|
"wetty": "./app.js"
|
|
},
|
|
"@std/esm": {
|
|
"esm": "js",
|
|
"cjs": "true"
|
|
},
|
|
"files": ["bin", "public"],
|
|
"scripts": {
|
|
"lint": "eslint .",
|
|
"lint:fix": "eslint . --fix",
|
|
"build": "gulp",
|
|
"start": "node app.js",
|
|
"commit": "git add public",
|
|
"fix": "eslint . --fix"
|
|
}
|
|
}
|
|
|