-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 3.2 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 3.2 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "@aicore/cocodb",
"version": "1.0.6",
"description": "Simple json document database using mysql",
"main": "src/server.js",
"type": "module",
"keywords": [
"mysql",
"documentdb",
"nodejs",
"unit",
"testing",
"mocha",
"chai",
"coverage"
],
"scripts": {
"eslint": "npm run lint",
"eslint:fix": "npm run lint:fix",
"lint": "eslint --quiet src test",
"lint:fix": "eslint --quiet --fix src test",
"test": "npm run test:unit && npm run test:integ",
"test:unit": "APP_CONFIG=./test/unit/utils/.app.json mocha test/unit/*.spec.js test/unit/**/*.spec.js test/unit/**/*.spec.js test/unit/**/**/*.spec.js --timeout=3000",
"test:integ": "mocha test/integration/*.spec.js test/integration/**/*.spec.js --timeout=30000",
"printReportsLink": "echo Detailed unit test coverage report: file:///$(pwd)/coverage-unit/index.html && echo Detailed integration test coverage report: file:///$(pwd)/coverage-integration/index.html",
"cover": "npm run cover:unit",
"cover:unit": "c8 -c .nycrc.unit.json npm run test:unit && npm run --silent printReportsLink",
"vulnerabilityCheck": "echo Scanning for npm vulnarabilities && npm audit --prod --audit-level=high",
"build": "npm run cover && npm run createJSDocs && npm run vulnerabilityCheck",
"createJSDocs": "node build/jsDocGenerate.js src docs/generatedApiDocs && git add docs",
"bumpPatchVersion": "npm --no-git-tag-version version patch",
"bumpPatchVersionWithGitTag": "npm version patch",
"release": "npm run bumpPatchVersionWithGitTag",
"serve": "node src/index.js",
"serve:dev": "nodemon src/index.js",
"generateGrafanaDashboard": "node build/generate-grafana-system-dashboard.js && node build/generate-grafana-operations-dashboard.js",
"generateGrafanaDashboard:system": "node build/generate-grafana-system-dashboard.js",
"generateGrafanaDashboard:operations": "node build/generate-grafana-operations-dashboard.js"
},
"files": [
"src"
],
"repository": {
"type": "git",
"url": "https://github.com/aicore/cocodb.git"
},
"author": "charly, core.ai",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/aicore/cocodb/issues"
},
"homepage": "https://github.com/aicore/cocodb#readme",
"devDependencies": {
"@aicore/coco-db-client": "^1.0.21",
"@aicore/libtestutils": "1.0.16",
"@commitlint/cli": "19.8.1",
"@commitlint/config-conventional": "19.8.1",
"c8": "10.1.3",
"chai": "5.3.3",
"cli-color": "2.0.4",
"documentation": "14.0.3",
"eslint": "^9.38.0",
"glob": "11.1.0",
"mocha": "11.8.0",
"nodemon": "3.1.11"
},
"dependencies": {
"@aicore/cocodb-ws-client": "^1.0.28",
"@aicore/libcommonutils": "1.0.20",
"@aicore/libmysql": "^1.0.50",
"@aicore/metrics": "^1.2.9",
"@elastic/ecs-pino-format": "^1.5.0",
"@fastify/websocket": "11.3.0",
"ajv": "8.20.0",
"fastify": "5.12.1",
"pino-pretty": "^11.0.0",
"uuid": "11.1.1"
},
"optionalDependencies": {
"bufferutil": "4.1.0",
"utf-8-validate": "6.0.6"
},
"overrides": {
"brace-expansion@1": "^1.1.18",
"mocha": {
"diff": "^8.0.3",
"serialize-javascript": "^7.1.0"
}
}
}