forked from microsoft/ApplicationInsights-node.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.12 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
{
"name": "applicationinsights",
"license": "MIT",
"bugs": "https://github.com/Microsoft/ApplicationInsights-node.js/issues",
"version": "0.15.5",
"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": "scsouthw",
"email": "[email protected]"
},
{
"name": "bogdanbe",
"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": {
"async": "^0.9.0",
"chai": "^2.3.0",
"mocha": "^2.2.4",
"node-mocks-http": "^1.2.3",
"sinon": "^1.14.1",
"typescript": "^1.0.1"
}
}