mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-10 15:44:05 -08:00
d2939ecacc
Bumps [@types/chai](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/chai) from 4.2.21 to 4.2.22. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/chai) --- updated-dependencies: - dependency-name: "@types/chai" dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
87 lines
2.7 KiB
JSON
87 lines
2.7 KiB
JSON
{
|
|
"name": "codemirror-promql",
|
|
"version": "0.18.0",
|
|
"description": "a CodeMirror mode for the PromQL language",
|
|
"main": "dist/cjs/index.js",
|
|
"module": "dist/esm/index.js",
|
|
"scripts": {
|
|
"build": "npm run build:grammar && npm run build:lib",
|
|
"build:grammar": "lezer-generator src/grammar/promql.grammar -o src/grammar/parser",
|
|
"build:lib": "bash ./build.sh",
|
|
"test": "npm run build:grammar && ts-mocha -p tsconfig.json ./**/*.test.ts",
|
|
"test:coverage": "npm run build:grammar && nyc ts-mocha -p ./tsconfig.json ./**/*.test.ts",
|
|
"codecov": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
|
|
"lint": "eslint src/ --ext .ts",
|
|
"lint:fix": "eslint --fix src/ --ext .ts"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/prometheus/codemirror-promql.git"
|
|
},
|
|
"keywords": [
|
|
"promql",
|
|
"codemirror",
|
|
"mode",
|
|
"prometheus"
|
|
],
|
|
"author": "Prometheus Authors <prometheus-developers@googlegroups.com>",
|
|
"license": "Apache-2.0",
|
|
"bugs": {
|
|
"url": "https://github.com/prometheus/codemirror-promql/issues"
|
|
},
|
|
"homepage": "https://github.com/prometheus/codemirror-promql/blob/master/README.md",
|
|
"dependencies": {
|
|
"lru-cache": "^6.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@codemirror/autocomplete": "^0.19.3",
|
|
"@codemirror/basic-setup": "^0.19.0",
|
|
"@codemirror/highlight": "^0.19.6",
|
|
"@codemirror/language": "^0.19.4",
|
|
"@codemirror/lint": "^0.19.1",
|
|
"@codemirror/state": "^0.19.2",
|
|
"@codemirror/view": "^0.19.7",
|
|
"@lezer/common": "^0.15.8",
|
|
"@lezer/generator": "^0.15.1",
|
|
"@types/chai": "^4.2.22",
|
|
"@types/lru-cache": "^5.1.0",
|
|
"@types/mocha": "^9.0.0",
|
|
"@types/node": "^16.11.7",
|
|
"@typescript-eslint/eslint-plugin": "^5.3.1",
|
|
"@typescript-eslint/parser": "^5.3.1",
|
|
"chai": "^4.2.0",
|
|
"codecov": "^3.8.1",
|
|
"eslint": "^8.2.0",
|
|
"eslint-config-prettier": "^8.3.0",
|
|
"eslint-plugin-flowtype": "^8.0.3",
|
|
"eslint-plugin-import": "^2.24.2",
|
|
"eslint-plugin-prettier": "^4.0.0",
|
|
"isomorphic-fetch": "^3.0.0",
|
|
"mocha": "^8.1.2",
|
|
"nock": "^13.0.11",
|
|
"nyc": "^15.1.0",
|
|
"prettier": "^2.3.2",
|
|
"ts-loader": "^7.0.4",
|
|
"ts-mocha": "^8.0.0",
|
|
"ts-node": "^9.0.0",
|
|
"typescript": "^4.2.3"
|
|
},
|
|
"peerDependencies": {
|
|
"@codemirror/autocomplete": "^0.19.3",
|
|
"@codemirror/highlight": "^0.19.6",
|
|
"@codemirror/language": "^0.19.4",
|
|
"@codemirror/lint": "^0.19.1",
|
|
"@codemirror/state": "^0.19.2",
|
|
"@codemirror/view": "^0.19.7",
|
|
"@lezer/common": "^0.15.8"
|
|
},
|
|
"prettier": {
|
|
"singleQuote": true,
|
|
"trailingComma": "es5",
|
|
"printWidth": 150
|
|
},
|
|
"engines": {
|
|
"node": ">=12.0.0"
|
|
}
|
|
}
|