forked from SamVerschueren/angular-ga
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.5 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
{
"name": "@ngx-ext/google-analytics",
"version": "1.0.1",
"description": "Google Analytics for your Angular application",
"license": "MIT",
"repository": "ngx-ext/google-analytics",
"schematics": "./schematics/collection.json",
"ng-add": {
"save": "dependencies"
},
"author": {
"name": "ngx-ext (forked from Sam Verschueren)",
"email": "[email protected]"
},
"engines": {
"node": ">= 8"
},
"scripts": {
"test": "npm run lint",
"lint": "tslint -p . --format stylish",
"lint:fix": "tslint -p . --format stylish --fix",
"build": "ng build google-analytics --prod",
"build:schematics": "../../node_modules/.bin/tsc -p tsconfig.schematics.json",
"copy:schemas": "rsync -R schematics/*/schema.json ../../dist/google-analytics/",
"copy:files": "rsync -R schematics/*/files/** ../../dist/google-analytics/",
"copy:collection": "cp schematics/collection.json ../../dist/google-analytics/schematics/collection.json",
"postbuild": "npm run build:schematics && npm run copy:collection"
},
"keywords": [
"angular",
"ga",
"google",
"analytics",
"google-analytics",
"googleanalytics",
"ganalytics"
],
"peerDependencies": {
"@angular/core": ">= 8.0.0"
},
"devDependencies": {
"@angular/common": "^9.0.0",
"@angular/compiler": "^9.0.0",
"@angular/compiler-cli": "^9.0.0",
"@angular/core": "^9.0.0",
"@angular/platform-server": "^9.0.0",
"codelyzer": "^5.2.1",
"rxjs": "^6.5.4",
"tslint": "^5.8.0",
"typescript": ">= 3.8",
"zone.js": ">= 0.10.2"
}
}