-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
executable file
·48 lines (48 loc) · 1.12 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
{
"name": "nuxt-pino-log",
"version": "0.2.1",
"description": "Log nuxt apps using pino",
"repository": "kpn/nuxt-pino-log",
"license": "MIT",
"contributors": [
{
"name": "Fraire Willemoës, Santiago <[email protected]>"
},
{
"name": "Skariah, Arun <[email protected]>"
}
],
"files": [
"lib"
],
"main": "lib/module.js",
"scripts": {
"dev": "nuxt example | pino-pretty",
"lint": "eslint --ext .js,.vue .",
"test": "yarn lint && jest"
},
"dependencies": {
"lodash.merge": "^4.6.2",
"pino": "^7.6.4",
"pino-http": "^6.6.0"
},
"devDependencies": {
"@babel/core": "latest",
"@babel/eslint-parser": "latest",
"@babel/preset-env": "latest",
"@commitlint/cli": "latest",
"@commitlint/config-conventional": "latest",
"@nuxtjs/eslint-config": "latest",
"@nuxtjs/module-test-utils": "latest",
"babel-jest": "latest",
"eslint": "latest",
"eslint-plugin-ejs": "^0.0.2",
"husky": "latest",
"jest": "latest",
"nuxt-edge": "latest",
"pino-pretty": "^7.5.0"
},
"publishConfig": {
"access": "public"
}
}