mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-16 18:44:05 -08:00
043a2954f8
* create lezer-promql module + move codemirror to a pure esm module + unified dependencies Signed-off-by: Augustin Husson <husson.augustin@gmail.com> * ignore test utils file and remove the type "module" in package.json Signed-off-by: Augustin Husson <husson.augustin@gmail.com> * use jest to run the lezer-promql test Signed-off-by: Augustin Husson <husson.augustin@gmail.com> * give an automatic way to update the ui dependencies Signed-off-by: Augustin Husson <husson.augustin@gmail.com> * update all dependencies using make update-npm-deps Signed-off-by: Augustin Husson <husson.augustin@gmail.com> * fix react-app test Signed-off-by: Augustin Husson <husson.augustin@gmail.com> * remove generated file Signed-off-by: Augustin Husson <husson.augustin@gmail.com> * remove unnecessary backslash in script Signed-off-by: Augustin Husson <husson.augustin@gmail.com> * fix reviews Signed-off-by: Augustin Husson <husson.augustin@gmail.com> * rewording Signed-off-by: Augustin Husson <husson.augustin@gmail.com> * use npx to run lezer-generator Signed-off-by: Augustin Husson <husson.augustin@gmail.com>
66 lines
1.8 KiB
JSON
66 lines
1.8 KiB
JSON
{
|
|
"name": "codemirror-promql",
|
|
"version": "0.19.0",
|
|
"description": "a CodeMirror mode for the PromQL language",
|
|
"types": "dist/esm/index.d.ts",
|
|
"module": "dist/esm/index.js",
|
|
"main": "dist/cjs/index.js",
|
|
"scripts": {
|
|
"build": "npm run build:lib",
|
|
"build:lib": "bash ./build.sh",
|
|
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
|
|
"lint": "eslint src/ --ext .ts",
|
|
"lint:fix": "eslint --fix src/ --ext .ts"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/prometheus/prometheus.git"
|
|
},
|
|
"keywords": [
|
|
"promql",
|
|
"codemirror",
|
|
"mode",
|
|
"prometheus"
|
|
],
|
|
"author": "Prometheus Authors <prometheus-developers@googlegroups.com>",
|
|
"license": "Apache-2.0",
|
|
"bugs": {
|
|
"url": "https://github.com/prometheus/prometheus/issues"
|
|
},
|
|
"homepage": "https://github.com/prometheus/prometheus/blob/main/web/ui/module/codemirror-promql/README.md",
|
|
"dependencies": {
|
|
"lezer-promql": "0.23.0",
|
|
"lru-cache": "^6.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@codemirror/autocomplete": "^0.19.15",
|
|
"@codemirror/highlight": "^0.19.8",
|
|
"@codemirror/language": "^0.19.10",
|
|
"@codemirror/lint": "^0.19.6",
|
|
"@codemirror/state": "^0.19.9",
|
|
"@codemirror/view": "^0.19.48",
|
|
"@lezer/common": "^0.15.12",
|
|
"@lezer/lr": "^0.15.8",
|
|
"@types/lru-cache": "^5.1.1",
|
|
"isomorphic-fetch": "^3.0.0",
|
|
"nock": "^13.2.4"
|
|
},
|
|
"peerDependencies": {
|
|
"@codemirror/autocomplete": "^0.19.15",
|
|
"@codemirror/highlight": "^0.19.8",
|
|
"@codemirror/language": "^0.19.10",
|
|
"@codemirror/lint": "^0.19.6",
|
|
"@codemirror/state": "^0.19.9",
|
|
"@codemirror/view": "^0.19.48",
|
|
"@lezer/common": "^0.15.12"
|
|
},
|
|
"prettier": {
|
|
"singleQuote": true,
|
|
"trailingComma": "es5",
|
|
"printWidth": 150
|
|
},
|
|
"engines": {
|
|
"node": ">=12.0.0"
|
|
}
|
|
}
|