mirror of
https://github.com/weaveworks/scope.git
synced 2026-03-03 18:20:27 +00:00
- term.js - Add eslintignore - Fix color and es2015 after rebase - Fix JS test, probably deleted during conflict resolution - Moves terminal close button to top-right of window - Consitent w/ details window. - Changes padding of details window close button so both close buttons are horizonally aligned. - Terminal resizes w/ browser window. - No longer can drag window around. - Add tiny big of padding between term and node-details. - Playing w/ terminal placement. This one's more drawer-like. - Send DELETE when we close a terminal window. - Dont lint or bable JS vendor files - Ignore ctags 'tags' files. - Adds popping out terminal out into a new browser window. - Simplify code as now we've just a single terminal window. - ESC is back to close the terminal, then the details panel. - Fixes bug w/ slow response to closing the details panel. - Moving away from "drawer-style" for terminal size and position to a simple window. - Just gotta handle the case for refreshing a popped out terminal. - Stop terminal text being auto-deselected. - window resizes will still deselect. - Adds state.connected to react.scu check. - Don't delete pipe when browser closes - To allow for nicer refresh flows - scope-app will time out pipe after a while. - Keep terminal-open/closed state in the url. - shouldComponentUpdate fix to prevent deselection of text has been rolled back so gotta come up w/ another way to handle that... - Fixes terminal text-selection again. - Make pipes work for non-raw terminals too. - Move document.title updating somewhere more sensible. - Pass rawTty prop along to all terminals. - Don't render react root into doc.body - Reconnect the websocket if we lose it. - First, slightly rough, attempt at displaying if pipe has been deleted - Refactor controlPipe structure in the AppStore/hash. - Merge controlPipeId, controlPipeRaw, controlPipeStatus into a single object. - Adds a status bar to the terminal window. - Error handling in popout working again. - Don't show terminal cursor when not connected. - Simplify controlPipe status and error handling. - Don't keep the status in the hash. - Use special new action receiveControlPipeFromParams rather than adding lots of branching to receiveControlPipe. - You can reload a terminal but it doesn't exist in history stack. - Pull out terminal into its own entry point! - Fixes prod webpack build - Fixes terminal-app websocket path when running on prod. - Fixes old terminals appearing when closing a terminal. - History hacking wasn't working, this is a little simpler.
94 lines
2.4 KiB
JSON
94 lines
2.4 KiB
JSON
{
|
|
"name": "weave-scope",
|
|
"version": "1.2.0",
|
|
"description": "SPA JS app for Weave Scope visualising the application network.",
|
|
"repository": "weaveworks/scope",
|
|
"license": "Apache-2.0",
|
|
"private": true,
|
|
"dependencies": {
|
|
"classnames": "^2.2.1",
|
|
"d3": "~3.5.5",
|
|
"dagre": "0.7.4",
|
|
"debug": "~2.2.0",
|
|
"flux": "2.1.1",
|
|
"font-awesome": "4.4.0",
|
|
"font-awesome-webpack": "0.0.4",
|
|
"immutable": "~3.7.4",
|
|
"lodash": "~3.10.1",
|
|
"materialize-css": "0.97.2",
|
|
"page": "1.6.4",
|
|
"react": "0.14.3",
|
|
"react-addons-pure-render-mixin": "0.14.3",
|
|
"react-addons-transition-group": "0.14.3",
|
|
"react-addons-update": "0.14.3",
|
|
"react-dom": "0.14.3",
|
|
"react-motion": "0.3.1",
|
|
"reqwest": "~2.0.5",
|
|
"timely": "0.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"autoprefixer": "6.0.1",
|
|
"babel-core": "6.1.4",
|
|
"babel-eslint": "4.1.5",
|
|
"babel-jest": "6.0.1",
|
|
"babel-loader": "6.1.0",
|
|
"babel-preset-es2015": "6.1.4",
|
|
"babel-preset-react": "6.1.4",
|
|
"css-loader": "0.22.0",
|
|
"eslint": "1.9.0",
|
|
"eslint-config-airbnb": "1.0.0",
|
|
"eslint-loader": "1.1.1",
|
|
"eslint-plugin-jasmine": "1.6.0",
|
|
"eslint-plugin-react": "3.8.0",
|
|
"file-loader": "0.8.4",
|
|
"jest-cli": "~0.7.1",
|
|
"json-loader": "0.5.3",
|
|
"less": "~2.5.1",
|
|
"less-loader": "2.2.1",
|
|
"postcss-loader": "0.7.0",
|
|
"style-loader": "0.13.0",
|
|
"url": "0.11.0",
|
|
"url-loader": "0.5.6",
|
|
"webpack": "~1.12.4"
|
|
},
|
|
"optionalDependencies": {
|
|
"express": "~4.13.3",
|
|
"express-http-proxy": "~0.6.0",
|
|
"proxy-middleware": "~0.15.0",
|
|
"react-hot-loader": "~1.3.0",
|
|
"webpack-dev-server": "~1.12.1"
|
|
},
|
|
"scripts": {
|
|
"build": "webpack -p --config webpack.production.config.js",
|
|
"start": "node server.js",
|
|
"start-production": "NODE_ENV=production node server.js",
|
|
"test": "jest",
|
|
"coveralls": "cat coverage/lcov.info | coveralls",
|
|
"lint": "eslint app",
|
|
"clean": "rm build/app.js"
|
|
},
|
|
"jest": {
|
|
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
|
|
"testFileExtensions": [
|
|
"js"
|
|
],
|
|
"testPathDirs": [
|
|
"<rootDir>/app/scripts"
|
|
],
|
|
"globals": {
|
|
"__WS_URL__": false
|
|
},
|
|
"moduleFileExtensions": [
|
|
"js",
|
|
"json"
|
|
],
|
|
"unmockedModulePathPatterns": [
|
|
"/dispatcher/",
|
|
"/node_modules/"
|
|
]
|
|
},
|
|
"engines": {
|
|
"node": ">=4.2.2"
|
|
}
|
|
}
|