-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1 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
{
"name": "angular-ga",
"version": "2.0.1",
"description": "Google Analytics for your Angular application",
"license": "MIT",
"repository": "SamVerschueren/angular-ga",
"author": {
"name": "Sam Verschueren",
"email": "sam.verschueren@gmail.com"
},
"engines": {
"node": ">=8"
},
"scripts": {
"test": "npm run lint",
"build": "ng-packagr -p package.json",
"lint": "tslint -p . --format stylish"
},
"keywords": [
"angular",
"ga",
"google",
"analytics",
"google-analytics",
"googleanalytics",
"ganalytics"
],
"peerDependencies": {
"@angular/core": "^8.0.0"
},
"devDependencies": {
"@angular/common": "^8.0.0",
"@angular/compiler": "^8.0.0",
"@angular/compiler-cli": "^8.0.0",
"@angular/core": "^8.0.0",
"@angular/platform-server": "^8.0.0",
"codelyzer": "^5.2.1",
"ng-packagr": "^5.7.1",
"rxjs": "^6.5.4",
"tslint": "^5.8.0",
"tslint-xo": "^0.16.0",
"typescript": "~3.4.5",
"zone.js": "0.10.2"
},
"ngPackage": {
"lib": {
"entryFile": "src/index.ts"
}
}
}