2021-08-20 02:39:07 -07:00
|
|
|
{
|
2022-06-13 06:19:07 -07:00
|
|
|
"name": "@prometheus-io/codemirror-promql",
|
2022-11-23 04:06:25 -08:00
|
|
|
"version": "0.40.3",
|
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": {
|
2022-11-23 04:06:25 -08:00
|
|
|
"@prometheus-io/lezer-promql": "^0.40.3",
|
2021-08-20 02:39:07 -07:00
|
|
|
"lru-cache": "^6.0.0"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-09-21 14:36:28 -07:00
|
|
|
"@codemirror/autocomplete": "^6.2.0",
|
|
|
|
"@codemirror/language": "^6.2.1",
|
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",
|
|
|
|
"@codemirror/view": "^6.2.4",
|
|
|
|
"@lezer/common": "^1.0.1",
|
|
|
|
"@lezer/lr": "^1.2.3",
|
|
|
|
"@lezer/highlight": "^1.1.0",
|
2021-12-01 06:54:22 -08:00
|
|
|
"@types/lru-cache": "^5.1.1",
|
2021-08-20 02:39:07 -07:00
|
|
|
"isomorphic-fetch": "^3.0.0",
|
2022-09-21 14:36:28 -07:00
|
|
|
"nock": "^13.2.9"
|
2021-08-20 02:39:07 -07:00
|
|
|
},
|
|
|
|
"peerDependencies": {
|
2022-09-21 14:36:28 -07:00
|
|
|
"@codemirror/autocomplete": "^6.2.0",
|
|
|
|
"@codemirror/language": "^6.2.1",
|
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",
|
|
|
|
"@codemirror/view": "^6.2.4",
|
|
|
|
"@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"
|
|
|
|
}
|
|
|
|
}
|