-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.23 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "kuzzle-plugin-prometheus",
"version": "4.2.1",
"description": "Kuzzle plugin: monitoring Kuzzle using Prometheus",
"author": {
"name": "The Kuzzle Team <[email protected]>"
},
"scripts": {
"npm:docker": "docker-compose run kuzzle npm",
"install:docker": "npm run npm:docker install kuzzle",
"dev:docker": "docker-compose up",
"services": "npx kourou app:start-services",
"prod": "node application/app.js",
"prepack": "npm run build",
"dev": "npx ergol application/app.ts -c ./config/ergol.json",
"test": "npm run test:lint && npm run test:unit && npm run test:functional",
"test:unit": "mocha",
"test:functional": "jest",
"test:lint": "eslint ./lib --ext .ts --config .eslintrc.json",
"test:lint:fix": "eslint ./lib --ext .ts --config .eslintrc.json --fix",
"build": "tsc --build tsconfig.json",
"clean": "touch index.ts && npm run build | grep TSFILE | cut -d' ' -f 2 | xargs rm",
"package:create": "npm run build && npm pack"
},
"main": "index.js",
"license": "Apache-2.0",
"dependencies": {
"lodash": "4.17.21",
"prom-client": "15.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kuzzleio/kuzzle-plugin-prometheus.git"
},
"issues": "https://github.com/kuzzleio/kuzzle-plugin-prometheus/issues",
"keywords": [
"kuzzle",
"plugin",
"monitoring",
"prometheus"
],
"devDependencies": {
"@jest/globals": "29.7.0",
"@types/jest": "29.5.11",
"@types/chai": "4.3.11",
"@types/mocha": "10.0.6",
"@types/node": "20.11.15",
"chai": "4.3.4",
"ergol": "1.0.2",
"eslint-plugin-kuzzle": "0.0.12",
"jest": "29.7.0",
"kuzzle": "2.28.0",
"kuzzle-sdk": "7.11.2",
"lodash": "4.17.21",
"mocha": "10.2.0",
"mock-require": "3.0.3",
"node-fetch": "2.0.0",
"nyc": "15.1.0",
"rewire": "7.0.0",
"should": "13.2.3",
"should-sinon": "0.0.6",
"sinon": "17.0.1",
"ts-jest": "29.1.2",
"ts-node": "10.9.2",
"typescript": "5.3.3",
"ws": "8.16.0"
},
"files": [
"index.js",
"index.d.ts",
"lib/**/*.js",
"lib/**/*.d.ts",
"lib/**/*.json"
],
"maintainers": [
{
"name": "kuzzle",
"email": "[email protected]"
}
]
}