@alexanderzobnin/monaco-kusto
Version:
CSL, KQL plugin for the Monaco Editor
94 lines (93 loc) • 2.64 kB
JSON
{
"name": "@alexanderzobnin/monaco-kusto",
"version": "0.2.3-rc.1",
"description": "CSL, KQL plugin for the Monaco Editor",
"author": {
"name": "Microsoft"
},
"license": "MIT",
"keywords": [
"Azure Data Explorer",
"ADE",
"kusto"
],
"homepage": "https://github.com/Azure/monaco-kusto",
"repository": {
"type": "git",
"url": "https://github.com/grafana/monaco-kusto"
},
"scripts": {
"compile": "gulp compile",
"watch": "gulp watch",
"prepublish-gulp": "gulp release",
"prepublishOnly": "webpack --progress --colors --config webpack/webpack.release.js",
"release": "webpack --progress --colors --config webpack/webpack.release.js",
"test": "jest",
"dev": "webpack --progress --colors --mode development --config webpack/webpack.dev.js",
"build": "webpack --progress --colors --config webpack/webpack.prod.js"
},
"main": "./release/webpack/monaco.contribution.min.js",
"types": "./release/webpack/monaco.contribution.d.ts",
"devDependencies": {
"@types/jest": "^21.1.8",
"@types/lodash": "^4.14.109",
"@types/node": "^10.12.18",
"@types/xregexp": "^3.0.29",
"clean-webpack-plugin": "^1.0.1",
"copy-webpack-plugin": "^4.6.0",
"event-stream": "3.3.4",
"gulp": "^3.9.1",
"gulp-requirejs": "0.1.3",
"gulp-tsb": "^2.0.0",
"gulp-uglify": "1.5.3",
"jest": "^22.0.1",
"lodash": "^4.17.4",
"merge-stream": "1.0.0",
"minimatch": "^3.0.4",
"monaco-editor": "^0.15.6",
"monaco-editor-core": "0.15.5",
"monaco-languages": "0.9.0",
"object-assign": "4.1.0",
"regexp-replace-loader": "^1.0.1",
"rimraf": "2.5.2",
"ts-jest": "^22.0.0",
"ts-loader": "^5.3.3",
"tslint-loader": "^3.5.4",
"typescript": "3.0.3",
"uglifyjs-webpack-plugin": "^2.1.1",
"vscode-languageserver-protocol-foldingprovider": "^1.0.1",
"vscode-languageserver-types": "3.6.1",
"webpack": "^4.29.0",
"webpack-bundle-analyzer": "^3.0.3",
"webpack-cli": "^3.2.1",
"webpack-merge": "^4.2.1",
"xregexp": "^3.2.0"
},
"dependencies": {
"@kusto/language-service": "0.0.22-alpha",
"@kusto/language-service-next": "0.0.25-alpha1"
},
"peerDependencies": {
"monaco-editor": "^0.15.6"
},
"jest": {
"rootDir": "src",
"globals": {
"ts-jest": {
"tsConfigFile": "src/tsconfig.json"
}
},
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}