-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.45 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.45 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
51
52
53
54
55
56
57
58
{
"name": "@aliceo2/control",
"version": "2.1.0",
"description": "ALICE O2 Control GUI",
"author": "George Raduta",
"contributors": [
"Adam Wegrzynek",
"Vladimir Kosmala"
],
"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/",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "npm run eslint && npm run mocha",
"dev": "nodemon --watch index.js --watch lib --watch config.js index.js",
"eslint": "./node_modules/.bin/eslint --config ../.eslintrc.js *.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"
},
"files": [
"index.js",
"lib/",
"public/",
"protobuf/"
],
"dependencies": {
"@aliceo2/web-ui": "2.9.0",
"@grpc/grpc-js": "1.14.0",
"@grpc/proto-loader": "0.8.0",
"google-protobuf": "4.0.0",
"kafkajs": "2.2.4"
},
"devDependencies": {
"eslint": "^8.56.0",
"jsonwebtoken": "^9.0.2",
"mocha": "^11.7.0",
"nock": "^15.0.0",
"nyc": "^18.0.0",
"proxyquire": "^2.1.3",
"puppeteer": "^24.37.2",
"sinon": "21.0.0",
"supertest": "7.2.2"
},
"bundleDependencies": [
"@aliceo2/web-ui",
"@grpc/grpc-js",
"@grpc/proto-loader"
]
}