-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.62 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
{
"name": "@figedi/metering",
"version": "1.1.5",
"description": "Prometheus metering-module and server",
"contributors": [],
"homepage": "https://github.com/figedi/metering",
"scripts": {
"specs:ci": "_mocha 'dist/**/*.spec.js'",
"specs": "_mocha --require ts-node/register 'src/**/*.spec.ts'",
"lint": "eslint --cache --ext .js,.jsx,.ts,.tsx ./src",
"build": "tsc"
},
"types": "dist/index.d.ts",
"main": "dist/index.js",
"engines": {
"node": ">=16.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/figedi/metering.git"
},
"keywords": [],
"license": "SEE LICENSE IN LICENSE.md",
"devDependencies": {
"@types/chai": "^4.3.16",
"@types/lodash": "^4.17.4",
"@types/mocha": "^10.0.6",
"@types/node": "^20.14.0",
"@types/sinon": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"chai": "^5.1.1",
"commitlint": "^19.3.0",
"eslint": "^8.56.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-promise": "^6.2.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.5",
"mocha": "^10.4.0",
"prettier": "^3.3.0",
"sinon": "^18.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"dependencies": {
"fastify": "^4.27.0",
"fastify-plugin": "^4.5.1",
"lodash": "^4.17.21",
"make-error": "^1.3.6",
"prom-client": "^15.1.2"
}
}