mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-10 15:44:05 -08:00
94d9367bbf
Signed-off-by: Bryan Boreham <bjboreham@gmail.com>
65 lines
1.8 KiB
JSON
65 lines
1.8 KiB
JSON
{
|
|
"name": "@prometheus-io/codemirror-promql",
|
|
"version": "0.44.0-rc.2",
|
|
"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 --runInBand",
|
|
"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": {
|
|
"@prometheus-io/lezer-promql": "0.44.0-rc.2",
|
|
"lru-cache": "^6.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@codemirror/autocomplete": "^6.4.0",
|
|
"@codemirror/language": "^6.4.0",
|
|
"@codemirror/lint": "^6.1.0",
|
|
"@codemirror/state": "^6.2.0",
|
|
"@codemirror/view": "^6.7.3",
|
|
"@lezer/common": "^1.0.2",
|
|
"@lezer/lr": "^1.3.1",
|
|
"@lezer/highlight": "^1.1.3",
|
|
"@types/lru-cache": "^5.1.1",
|
|
"isomorphic-fetch": "^3.0.0",
|
|
"nock": "^13.3.0"
|
|
},
|
|
"peerDependencies": {
|
|
"@codemirror/autocomplete": "^6.4.0",
|
|
"@codemirror/language": "^6.3.0",
|
|
"@codemirror/lint": "^6.0.0",
|
|
"@codemirror/state": "^6.1.1",
|
|
"@codemirror/view": "^6.4.0",
|
|
"@lezer/common": "^1.0.1"
|
|
},
|
|
"prettier": {
|
|
"singleQuote": true,
|
|
"trailingComma": "es5",
|
|
"printWidth": 150
|
|
},
|
|
"engines": {
|
|
"node": ">=12.0.0"
|
|
}
|
|
}
|