-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 952 Bytes
/
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
{
"name": "mindseye",
"version": "1.0.2",
"description": "MindsEye is a prometheus exporter that helps you track node packages in production.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"prepare": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/teamzerolabs/mindseye.git"
},
"keywords": [
"monitoring",
"prometheus",
"exporter",
"packages"
],
"author": "Jack Yeh",
"license": "MIT",
"bugs": {
"url": "https://github.com/teamzerolabs/mindseye/issues"
},
"peerDependencies": {
"express": "^4.17.1",
"prom-client": "^11.5.0 || ^12 || ^13 || ^14"
},
"homepage": "https://github.com/teamzerolabs/mindseye#readme",
"devDependencies": {
"express": "^4.17.1",
"prom-client": "^11.5.3",
"@types/express": "^4.17.2",
"@types/node": "^13.7.0",
"typescript": "^3.7.5"
},
"dependencies": {
}
}