-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
66 lines (66 loc) · 1.75 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@grafana/lezer-logql",
"version": "0.2.7",
"description": "Grafana Loki logQL lezer grammar",
"main": "index.cjs",
"type": "module",
"module": "index.es.js",
"types": "index.d.ts",
"license": "Apache-2.0",
"author": "Grafana Labs <[email protected]> (https://grafana.com)",
"repository": {
"type": "git",
"url": "git+https://github.com/grafana/lezer-logql.git"
},
"scripts": {
"build": "bash ./build.sh",
"test": "jest",
"build:test": "npm run build && npm run test",
"pre-commit": "lint-staged",
"local": "python3 -m http.server & SERVER_PID=$! && trap 'kill $SERVER_PID' INT && open http://localhost:8000/tools/tree-viz.local.html && wait $SERVER_PID"
},
"devDependencies": {
"@babel/core": "^7.22.8",
"@babel/preset-env": "^7.22.7",
"@lezer/generator": "^1.0.0",
"@lezer/lr": "^1.0.0",
"@rollup/plugin-commonjs": "^25.0.2",
"@rollup/plugin-multi-entry": "^6.0.0",
"@rollup/plugin-node-resolve": "15.1.0",
"babel-jest": "^29.6.1",
"eslint": "^8.44.0",
"jest": "^29.6.1",
"lint-staged": "^13.2.3",
"prettier": "^3.0.0",
"rollup": "^2.27.1",
"rollup-plugin-combine": "2.1.1",
"rollup-plugin-match": "1.0.0"
},
"lint-staged": {
"**/*.{js,cjs,mjs}": [
"eslint --fix",
"prettier --write"
],
"**/*.{json,md}": [
"prettier --write"
]
},
"peerDependencies": {
"@lezer/lr": "^1.0.0"
},
"exports": {
"types": "./index.d.ts",
"import": "./index.es.js",
"require": "./index.cjs"
},
"bugs": {
"url": "https://github.com/grafana/lezer-logql/issues"
},
"homepage": "https://github.com/grafana/lezer-logql#readme",
"files": [
"index.cjs",
"index.d.ts",
"index.es.js",
"package.json"
]
}