-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
112 lines (112 loc) · 2.96 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": "11.0.0",
"description": "A module for generating metrics from V8.",
"main": "index.js",
"scripts": {
"build": "node ./build.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:lockfile": "lockfile-lint --path package-lock.json --type npm --allowed-hosts npm --validate-https --validate-integrity",
"unit": "c8 -o ./coverage/unit tap --expose-gc --jobs=1 --no-coverage tests/unit/*.tap.js",
"integration": "c8 -o ./coverage/integration tap --timeout 360000 --jobs=1 --no-coverage tests/integration/*.tap.js",
"native": "node tests/native/*.js",
"test": "npm run unit && npm run integration",
"install": "node-gyp-build",
"prepare": "husky install || true",
"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": "[email protected]: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 <[email protected]>",
"contributors": [
{
"name": "Natalie Wolfe",
"email": "[email protected]",
"web": "https://newrelic.com"
},
{
"name": "Peter Svetlichny",
"email": "[email protected]",
"web": "https://newrelic.com"
},
{
"name": "Alan Storm",
"email": "[email protected]",
"web": "https://newrelic.com"
},
{
"name": "Bryan Clement",
"email": "[email protected]",
"web": "https://newrelic.com"
},
{
"name": "Michael Goin",
"email": "[email protected]",
"web": "https://newrelic.com"
},
{
"name": "Nick Tzaperas",
"email": "[email protected]",
"web": "https://newrelic.com"
},
{
"name": "Carlo Pearson",
"email": "[email protected]",
"web": "https://newrelic.com"
}
],
"license": "Apache-2.0",
"engines": {
"node": ">=18",
"npm": ">=6"
},
"devDependencies": {
"@newrelic/eslint-config": "^0.0.4",
"@newrelic/newrelic-oss-cli": "^0.1.2",
"@newrelic/proxy": "^2.0.0",
"async": "^3.2.2",
"aws-sdk": "^2.266.1",
"c8": "^8.0.0",
"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",
"lockfile-lint": "^4.9.6",
"nock": "^13.1.1",
"prettier": "^2.3.2",
"proxyquire": "^2.1.3",
"sinon": "^11.1.2",
"tap": "^16.3.7"
},
"dependencies": {
"nan": "^2.19.0",
"node-gyp-build": "^4.8.1",
"prebuildify": "^6.0.1"
},
"files": [
"index.js",
"build.js",
"prebuilds/**/*",
"src/*cpp",
"src/*.hpp",
"binding.gyp",
"*.md"
]
}