-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
57 lines (57 loc) · 2.25 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
{
"name": "applicationinsights-native-metrics",
"description": "Native APM agent for the Application Insights Node.js SDK",
"version": "0.0.11",
"engines": {
"node": ">=6.0.0",
"npm": ">=3.8.6"
},
"main": "./out/main.js",
"scripts": {
"install": "node-pre-gyp install --fallback-to-build",
"build:ts": "tsc --project ./tsconfig.json",
"build": "node-gyp configure && node-gyp rebuild && npm run build:ts",
"lint": "eslint ./lib --fix",
"test": "mocha --recursive --v8-expose-gc test/EndToEnd.js",
"test:native": "run-s test:renamebinding test:renametestbinding build test:runtests test:renameoriginalbinding",
"test:runtests": "node ./test_native/test.js",
"test:renamebinding": "rename-files ./ binding.gyp temp",
"test:renametestbinding": "cp test.gyp binding.gyp",
"test:renameoriginalbinding": "rename-files ./ temp binding.gyp",
"clean": "rimraf build/",
"package": "./node_modules/.bin/node-pre-gyp configure; ./node_modules/.bin/node-pre-gyp build; ./node_modules/.bin/node-pre-gyp package",
"package:windows": ".\\node_modules\\.bin\\node-pre-gyp configure build package",
"publish:github": "npm i @mmomtchev/node-pre-gyp-github; ./node_modules/.bin/node-pre-gyp-github publish;",
"publish:github:windows": ".\\node_modules\\.bin\\node-pre-gyp-github publish"
},
"gypfile": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/ApplicationInsights-node.js-native-metrics.git"
},
"dependencies": {
"@mapbox/node-pre-gyp": "^1.0.11",
"nan": "^2.20.0"
},
"devDependencies": {
"@types/node": "^11.15.54",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"copyfiles": "^2.1.1",
"eslint": "^8.46.0",
"eslint-plugin-node": "^11.1.0",
"mocha": "^10.2.0",
"rename-files": "0.0.2",
"rimraf": "^2.7.1",
"sinon": "^8.1.1",
"typescript": "4.1.2"
},
"binary": {
"module_name": "native_metrics",
"module_path": "./build/Release",
"package_name": "{module_name}-v{version}-{node_abi}-{platform}-{arch}-{libc}.tar.gz",
"host": "https://github.com/Microsoft/ApplicationInsights-node.js-native-metrics/releases/download/",
"remote_path": "v{version}"
}
}