2021-08-20 02:39:07 -07:00
|
|
|
{
|
2022-06-13 06:19:07 -07:00
|
|
|
"name": "@prometheus-io/codemirror-promql",
|
2024-09-09 12:02:50 -07:00
|
|
|
"version": "0.300.0-beta.0",
|
2021-08-20 02:39:07 -07:00
|
|
|
"description": "a CodeMirror mode for the PromQL language",
|
2022-04-05 02:49:22 -07:00
|
|
|
"types": "dist/esm/index.d.ts",
|
2021-09-10 06:38:20 -07:00
|
|
|
"module": "dist/esm/index.js",
|
2022-04-05 02:49:22 -07:00
|
|
|
"main": "dist/cjs/index.js",
|
2021-08-20 02:39:07 -07:00
|
|
|
"scripts": {
|
2022-04-05 02:49:22 -07:00
|
|
|
"build": "npm run build:lib",
|
2021-08-29 06:16:25 -07:00
|
|
|
"build:lib": "bash ./build.sh",
|
2022-05-13 05:49:38 -07:00
|
|
|
"test": "NODE_OPTIONS=--experimental-vm-modules jest --runInBand",
|
2021-08-20 02:39:07 -07:00
|
|
|
"lint": "eslint src/ --ext .ts",
|
|
|
|
"lint:fix": "eslint --fix src/ --ext .ts"
|
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2022-04-05 02:49:22 -07:00
|
|
|
"url": "git+https://github.com/prometheus/prometheus.git"
|
2021-08-20 02:39:07 -07:00
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"promql",
|
|
|
|
"codemirror",
|
|
|
|
"mode",
|
|
|
|
"prometheus"
|
|
|
|
],
|
|
|
|
"author": "Prometheus Authors <prometheus-developers@googlegroups.com>",
|
2021-09-27 01:17:30 -07:00
|
|
|
"license": "Apache-2.0",
|
2021-08-20 02:39:07 -07:00
|
|
|
"bugs": {
|
2022-04-05 02:49:22 -07:00
|
|
|
"url": "https://github.com/prometheus/prometheus/issues"
|
2021-08-20 02:39:07 -07:00
|
|
|
},
|
2022-04-05 02:49:22 -07:00
|
|
|
"homepage": "https://github.com/prometheus/prometheus/blob/main/web/ui/module/codemirror-promql/README.md",
|
2021-08-20 02:39:07 -07:00
|
|
|
"dependencies": {
|
2024-09-09 12:02:50 -07:00
|
|
|
"@prometheus-io/lezer-promql": "0.300.0-beta.0",
|
2024-09-17 07:13:29 -07:00
|
|
|
"lru-cache": "^11.0.1"
|
2021-08-20 02:39:07 -07:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2024-07-10 08:35:14 -07:00
|
|
|
"@codemirror/autocomplete": "^6.17.0",
|
2024-06-06 05:14:52 -07:00
|
|
|
"@codemirror/language": "^6.10.2",
|
2024-07-15 02:42:41 -07:00
|
|
|
"@codemirror/lint": "^6.8.1",
|
2023-12-07 06:43:15 -08:00
|
|
|
"@codemirror/state": "^6.3.3",
|
2024-08-02 01:06:52 -07:00
|
|
|
"@codemirror/view": "^6.29.1",
|
2024-06-05 08:18:31 -07:00
|
|
|
"@lezer/common": "^1.2.1",
|
2023-12-07 06:43:15 -08:00
|
|
|
"@lezer/highlight": "^1.2.0",
|
2024-08-02 02:47:04 -07:00
|
|
|
"@lezer/lr": "^1.4.2",
|
2024-04-18 06:00:27 -07:00
|
|
|
"eslint-plugin-prettier": "^5.1.3",
|
2021-08-20 02:39:07 -07:00
|
|
|
"isomorphic-fetch": "^3.0.0",
|
2024-06-06 04:29:05 -07:00
|
|
|
"nock": "^13.5.4"
|
2021-08-20 02:39:07 -07:00
|
|
|
},
|
|
|
|
"peerDependencies": {
|
2023-01-25 10:49:14 -08:00
|
|
|
"@codemirror/autocomplete": "^6.4.0",
|
2022-11-08 12:29:32 -08:00
|
|
|
"@codemirror/language": "^6.3.0",
|
2022-06-13 08:55:06 -07:00
|
|
|
"@codemirror/lint": "^6.0.0",
|
2022-09-21 14:36:28 -07:00
|
|
|
"@codemirror/state": "^6.1.1",
|
2022-11-08 12:29:32 -08:00
|
|
|
"@codemirror/view": "^6.4.0",
|
2022-09-21 14:36:28 -07:00
|
|
|
"@lezer/common": "^1.0.1"
|
2021-08-20 02:39:07 -07:00
|
|
|
},
|
|
|
|
"prettier": {
|
|
|
|
"singleQuote": true,
|
|
|
|
"trailingComma": "es5",
|
|
|
|
"printWidth": 150
|
|
|
|
},
|
|
|
|
"engines": {
|
|
|
|
"node": ">=12.0.0"
|
|
|
|
}
|
|
|
|
}
|