forked from newrelic/node-native-metrics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
112 lines (112 loc) · 2.95 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "@newrelic/native-metrics",
"version": "8.0.0",
"description": "A module for generating metrics from V8.",
"main": "index.js",
"scripts": {
"build": "node ./lib/pre-build build native_metrics",
"clean": "node-gyp clean",
"rebuild": "node ./lib/pre-build rebuild native_metrics",
"upload": "node ./lib/upload native_metrics",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"unit": "tap --expose-gc --jobs=1 --no-coverage tests/unit/*.tap.js",
"integration": "tap --timeout 360000 --jobs=1 --no-coverage tests/integration/*.tap.js",
"native": "node tests/native/*.js",
"test": "npm run lint && npm run unit && npm run integration",
"install": "node ./lib/pre-build.js install native_metrics",
"prepare": "husky install",
"third-party-updates": "oss third-party manifest && oss third-party notices && git add THIRD_PARTY_NOTICES.md third_party_manifest.json"
},
"repository": {
"type": "git",
"url": "git@github.com:newrelic/node-native-metrics"
},
"keywords": [
"newrelic",
"gc",
"metrics",
"stats",
"gc-stats",
"gc stats",
"gc metrics",
"native-metrics",
"native metrics"
],
"author": "New Relic Node.js agent team <nodejs@newrelic.com>",
"contributors": [
{
"name": "Natalie Wolfe",
"email": "nwolfe@newrelic.com",
"web": "https://newrelic.com"
},
{
"name": "Peter Svetlichny",
"email": "psvetlichny@newrelic.com",
"web": "https://newrelic.com"
},
{
"name": "Alan Storm",
"email": "astorm@newrelic.com",
"web": "https://newrelic.com"
},
{
"name": "Bryan Clement",
"email": "bclement@newrelic.com",
"web": "https://newrelic.com"
},
{
"name": "Michael Goin",
"email": "mgoin@newrelic.com",
"web": "https://newrelic.com"
},
{
"name": "Nick Tzaperas",
"email": "ntzaperas@newrelic.com",
"web": "https://newrelic.com"
},
{
"name": "Carlo Pearson",
"email": "cpearson@newrelic.com",
"web": "https://newrelic.com"
}
],
"license": "Apache-2.0",
"engines": {
"node": ">=12",
"npm": ">=6"
},
"devDependencies": {
"@newrelic/eslint-config": "^0.0.2",
"@newrelic/newrelic-oss-cli": "^0.1.2",
"@newrelic/proxy": "^2.0.0",
"async": "^3.2.0",
"aws-sdk": "^2.266.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^7.0.1",
"lint-staged": "^11.1.1",
"nock": "^13.1.1",
"prettier": "^2.3.2",
"segfault-handler": "^1.3.0",
"sinon": "^11.1.2",
"tap": "^15.0.9"
},
"dependencies": {
"https-proxy-agent": "^5.0.0",
"nan": "^2.15.0",
"semver": "^5.5.1"
},
"files": [
"index.js",
"src/*cpp",
"src/*.hpp",
"lib/common.js",
"lib/pre-build.js",
"binding.gyp",
"*.md"
]
}