-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
51 lines (51 loc) · 1.33 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
{
"name": "nuxt-prometheus-module",
"version": "0.1.4",
"description": "A nuxt module to export data to prometheus",
"license": "MIT",
"main": "lib/module.js",
"files": [
"lib"
],
"scripts": {
"dev": "nuxt example --port 3003",
"generate": "nuxt generate example",
"lint": "eslint --ext .js,.vue example lib test",
"release": "yarn test && standard-version && git push --follow-tags && npm publish",
"test": "yarn lint --fix && jest"
},
"dependencies": {
"prom-client": "^11.5.3"
},
"devDependencies": {
"@babel/core": "latest",
"@babel/preset-env": "latest",
"@nuxtjs/eslint-config": "latest",
"@nuxtjs/module-test-utils": "latest",
"@types/jest": "latest",
"babel-eslint": "latest",
"babel-jest": "latest",
"codecov": "latest",
"eslint": "latest",
"jest": "latest",
"nuxt-edge": "latest",
"standard-version": "latest"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/franckaragao/nuxt-prometheus-module.git"
},
"bugs": {
"url": "https://github.com/franckaragao/nuxt-prometheus-module/issues"
},
"homepage": "https://github.com/franckaragao/nuxt-prometheus-module/blob/main/README.md",
"keywords": [
"nuxt",
"prometheus",
"metrics",
"prom-client"
]
}