forked from microsoft/ApplicationInsights-node.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.4 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",
"license": "MIT",
"bugs": "https://github.com/Microsoft/ApplicationInsights-node.js/issues",
"version": "0.19.0",
"description": "Microsoft Application Insights module for Node.JS",
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/ApplicationInsights-node.js"
},
"main": "applicationinsights",
"keywords": [
"exception monitoring",
"request monitoring",
"performance monitoring",
"application insights",
"microsoft",
"azure"
],
"contributors": [
{
"name": "Application Insights Developer Support",
"email": "[email protected]"
},
{
"name": "kszostak",
"email": "[email protected]"
},
{
"name": "southwood",
"url": "https://github.com/southwood"
},
{
"name": "bogdanbe",
"email": "[email protected]"
},
{
"name": "lukim",
"email": "[email protected]"
}
],
"scripts": {
"prepublish": "tsc --module commonjs --declaration applicationinsights.ts",
"pretest": "find Tests -type f -name \"*.ts\" | xargs tsc --module commonjs",
"test": "./node_modules/mocha/bin/mocha ./Tests --recursive"
},
"devDependencies": {
"mocha": "3.1.2",
"node-mocks-http": "1.2.3",
"sinon": "1.17.6",
"typescript": "2.0.10",
"typings": "2.0.0"
},
"dependencies": {
"zone.js": "0.7.6"
}
}