forked from TrilonIO/angular-application-insights
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.47 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.47 KB
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
{
"name": "@markpieszak/ng-application-insights",
"version": "3.0.0",
"scripts": {
"lint": "tslint -p tsconfig.json",
"clean": "rimraf ./dist",
"build": "npm run clean && npm run tsc && ngc",
"tsc": "tsc"
},
"repository": {
"type": "git",
"url": "https://github.com/MarkPieszak/angular-application-insights"
},
"author": {
"name": "Mark Pieszak",
"email": "mpieszak84@gmail.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/MarkPieszak/angular-application-insights/issues"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"dependencies": {
"applicationinsights-js": "^1.0.12",
"@types/applicationinsights-js": "^1.0.2"
},
"peerDependencies": {
"@angular/router": "^5.0.0",
"rxjs": "^5.5.5"
},
"devDependencies": {
"@angular/cli": "^1.4.1",
"@angular/common": "^4.0.0",
"@angular/compiler": "^4.0.0",
"@angular/compiler-cli": "^4.0.0",
"@angular/core": "^4.0.0",
"@angular/platform-browser": "^4.0.0",
"@angular/router": "^4.0.0",
"codelyzer": "^3.1.2",
"rimraf": "^2.5.4",
"rxjs": "^5.0.3",
"tslint": "^5.7.0",
"typescript": "^2.5.2",
"zone.js": "^0.8.17"
},
"engines": {
"node": ">=6.0.0"
},
"keywords": [
"angular",
"angular2",
"ms application insights",
"application insights",
"angular application insights",
"microsoft application insights",
"ms app insights",
"aspnet core app insights"
]
}