-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
43 lines (43 loc) · 1.18 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
{
"name": "@nuxtjs/applicationinsights",
"version": "2.0.10",
"description": "AppInsights module for Nuxt.js",
"repository": "nuxt-community/applicationinsights-module",
"license": "MIT",
"contributors": [
{
"name": "Dmitry Molotkov <[email protected]>"
}
],
"files": [
"lib",
"types/*.d.ts"
],
"main": "lib/module.js",
"scripts": {
"lint": "eslint --ext .vue,.js lib test",
"lint:fix": "eslint --ext .vue,.js --fix lib test",
"release": "standard-version && git push --follow-tags && npm publish",
"test": "npm run lint && jest",
"nuxt": "node --inspect=0.0.0.0 node_modules/nuxt-edge/bin/nuxt test/fixture"
},
"dependencies": {
"@nuxt/kit": "^3.0.0-rc.10",
"applicationinsights": "^2.3.5",
"@microsoft/applicationinsights-web": "^2.8.7",
"deepmerge": "^4.2.2"
},
"devDependencies": {
"@nuxtjs/eslint-config": "^6.0.1",
"codecov": "^3.8.2",
"eslint": "^7.28.0",
"jest": "^26.6.3",
"nuxt": "npm:[email protected]",
"nuxt-edge": "^2.16.0-27064814.35c6ac41",
"standard-version": "^9.3.0"
},
"types": "types/index.d.ts",
"publishConfig": {
"access": "public"
}
}