-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.15 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.15 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
{
"name": "prom2javascript",
"version": "0.2.0",
"description": "A library to convert Prometheus metrics from text to JavaScript.",
"main": "dist/prom.js",
"types": "dist/prom.d.ts",
"files": [
"dist/"
],
"scripts": {
"build": "npm run clean && npm run tsc",
"clean": "rimraf dist",
"lint": "eslint . --ext .ts",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"test": "jest",
"tsc": "tsc"
},
"keywords": [
"prometheus",
"metrics",
"openmetrics"
],
"repository": {
"type": "git",
"url": "https://github.com/it-beyondit/prom2javascript.git"
},
"author": "Alessandro Scotti",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"@babel/preset-typescript": "^7.15.0",
"@types/express": "^4.17.13",
"@types/jest": "^27.0.1",
"@types/node": "^16.9.1",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"babel-jest": "^27.2.0",
"eslint": "^7.32.0",
"jest": "^27.2.0",
"rimraf": "^3.0.2",
"ts-node": "^10.2.1",
"typescript": "^4.4.2"
}
}