-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
39 lines (39 loc) · 991 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"name": "monaco-promql",
"version": "0.0.0",
"description": "Bundle of promql language for the Monaco Editor.",
"scripts": {
"build": "mrmdir ./lib && tsc -p ./src/tsconfig.json",
"lint": "eslint src/ --ext .ts",
"watch": "tsc -p ./src --watch",
"test": "mocha"
},
"main": "index.js",
"types": "index.d.ts",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/prometheus-community/monaco-promql"
},
"bugs": {
"url": "https://github.com/prometheus-community/monaco-promql/issues"
},
"keywords": [
"promql",
"monaco",
"monaco-editor",
"prometheus"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"eslint": "^7.22.0",
"jsdom": "^16.5.0",
"mocha": "^10.0.0",
"monaco-editor": "*",
"monaco-plugin-helpers": "^1.0.3",
"requirejs": "^2.3.6",
"typescript": "^4.2.3",
"uglify-js": "^3.13.1"
}
}