-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.47 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.47 KB
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
{
"name": "@aliceo2/infologger",
"version": "1.15.1",
"description": "Infologger GUI to query and stream log events",
"author": "Vladimir Kosmala",
"contributors": [
"Adam Wegrzynek",
"George Raduta",
"Martin Boulais"
],
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/AliceO2Group/WebUi.git"
},
"engines": {
"node": ">= 22.x"
},
"homepage": "https://alice-o2-project.web.cern.ch/",
"scripts": {
"start": "node index.js",
"test": "npm run eslint && npm run mocha",
"dev": "nodemon --inspect --watch index.js --watch lib --watch config.js index.js",
"simul": "node test/live-simulator/runInfoLoggerServer.js",
"eslint": "./node_modules/.bin/eslint --config eslint.config.js lib/ public/",
"mocha": "mocha --exit $(find test -name 'mocha-*.js')",
"coverage": "npm run eslint && nyc npm run mocha",
"coverage-local": "nyc --reporter=lcov npm run mocha",
"integration-query-test": "mocha --exit --bail ./test/integration/ilg-query-tests.js -R min"
},
"main": "index.js",
"dependencies": {
"@aliceo2/web-ui": "2.9.0",
"mariadb": "3.5.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@stylistic/eslint-plugin": "^5.9.0",
"eslint": "^10.0.2",
"eslint-plugin-jsdoc": "^62.7.1",
"globals": "^17.4.0",
"mocha": "^11.7.0",
"nyc": "^18.0.0",
"puppeteer": "^24.37.5",
"sinon": "^21.0.0"
},
"bundleDependencies": [
"@aliceo2/web-ui"
]
}