forked from microsoft/ApplicationInsights-JS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.58 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
{
"name": "applicationinsights-js",
"version": "1.0.20",
"description": "Microsoft Application Insights JavaScript SDK",
"main": "bundle/ai.module.js",
"keywords": [
"browser performance monitoring",
"script errors",
"application insights",
"microsoft",
"azure"
],
"scripts": {
"analytics": "cd ./vNext/extensions/applicationinsights-analytics-js && npm i",
"common": "cd ./vNext/shared/AppInsightsCommon/ && npm i",
"dependencies": "cd ./vNext/extensions/applicationinsights-dependencies-js && npm i",
"properties": "cd ./vNext/extensions/applicationinsights-properties-js && npm i",
"aisku": "cd ./vNext/AISKU && npm i",
"build-prefixes": "npm-run-all --serial analytics common dependencies properties aisku",
"test": "grunt test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/microsoft/ApplicationInsights-JS.git"
},
"author": "Microsoft Application Insights Team",
"license": "MIT",
"bugs": {
"url": "https://github.com/microsoft/ApplicationInsights-JS/issues"
},
"homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme",
"devDependencies": {
"grunt": "1.0.1",
"grunt-contrib-qunit": "2.0.0",
"grunt-contrib-uglify": "3.1.0",
"grunt-ts": "^6.0.0-beta.22",
"grunt-tslint": "^5.0.2",
"grunt-run": "^0.8.1",
"npm-run-all": "^4.1.3",
"tslint": "^5.11.0",
"tslint-microsoft-contrib": "^5.2.1",
"typescript": "2.5.3"
}
}