-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
executable file
·48 lines (48 loc) · 1.24 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": "@drunomics/nuxtjs-newrelic",
"version": "1.0.0-beta1",
"description": "A Nuxt.js module to easily add NewRelic APM data to your project.",
"repository": "drunomics/nuxtjs-newrelic",
"license": "MIT",
"contributors": [
{
"name": "Wolfgang Ziegler // fago <[email protected]>"
},
{
"name": "Maximilian Götz-Mikus <[email protected]>"
},
{
"name": "Alexandru Ieremia <[email protected]"
}
],
"files": [
"lib"
],
"main": "lib/module.js",
"scripts": {
"dev": "nuxt example",
"lint": "eslint --ext .js,.vue .",
"release": "npm run test && standard-version && git push --follow-tags && npm publish",
"test": "npm run lint && jest"
},
"dependencies": {
"@newrelic/native-metrics": "9.0.0",
"newrelic": "9.10.1"
},
"devDependencies": {
"@babel/core": "latest",
"@babel/preset-env": "latest",
"@commitlint/cli": "latest",
"@commitlint/config-conventional": "latest",
"@nuxt/test-utils": "^0.2.2",
"@nuxtjs/eslint-config": "latest",
"babel-eslint": "latest",
"eslint": "latest",
"husky": "latest",
"nuxt-edge": "latest",
"standard-version": "latest"
},
"publishConfig": {
"access": "public"
}
}