forked from angulartics/angulartics2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 3.92 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "angulartics2",
"description": "Vendor-agnostic web analytics for Angular2 applications",
"homepage": "http://angulartics.github.io/",
"author": "João Ribeiro <[email protected]> (https://github.com/JonnyBGod)",
"contributors": [
"Luis Farzati <[email protected]> (https://github.com/luisfarzati)",
"Tim Elfelt <[email protected]> (https://github.com/timelf123)",
"Simon Morvan <[email protected]> (https://github.com/morvans)",
"Corinna Cohn <[email protected]>",
"Tarun Garg <[email protected]> (https://github.com/tarun1793)",
"Ruben Oostinga <[email protected]> (https://github.com/0xR)",
"Adam Creeger <[email protected]> (https://github.com/acreeger)",
"Jan Nicklas <[email protected]> (https://github.com/jantimon)",
"Tomás Escobar <[email protected]> (https://github.com/tomasescobar)",
"Martin Crawford <[email protected]> (https://github.com/bemisguided)",
"Contantine Kim <[email protected]> (https://github.com/elegantcoder)",
"Larry Botha <[email protected]> (https://github.com/larrybotha)",
"Justin Russell <[email protected]> (https://github.com/jtrussell)",
"William Li <[email protected]> (https://github.com/wli)",
"pcw216 <[email protected]>",
"Nhat Nguyen <[email protected]> (https://github.com/ndnhat)",
"Chris Mendis <[email protected]> (https://github.com/chrismendis)",
"Sampo Savolainen <[email protected]> (https://github.com/sampov2)",
"Michał Gołębiowski <[email protected]> (https://github.com/mzgol)",
"Haim Litvak <[email protected]>",
"Hannah Fouasnon <[email protected]> (https://github.com/fouasnon)",
"Martin <[email protected]> (https://github.com/malog84)",
"tlekan <[email protected]> (https://github.com/tlekan)",
"Blake Blackshear <[email protected]> (https://github.com/blakeblackshear)",
"Guillermo Alcantara <[email protected]> (https://github.com/eipipuz)",
"Michael Cameron Delaney <[email protected]> (https://github.com/NewMediaRoc)",
"Chris Soyars <[email protected]> (https://github.com/ctso)",
"Fil Maj <[email protected]> (https://github.com/filmaj)"
],
"dependencies": {},
"devDependencies": {
"@angular/common": "^2.0.0-rc.2",
"@angular/compiler": "^2.0.0-rc.2",
"@angular/core": "^2.0.0-rc.2",
"@angular/platform-browser": "^2.0.0-rc.2",
"@angular/platform-browser-dynamic": "^2.0.0-rc.2",
"@angular/router": "^3.0.0-alpha.7",
"commitizen": "^2.8.1",
"cz-conventional-changelog": "^1.1.6",
"es6-shim": "^0.35.0",
"jasmine-core": "^2.4.1",
"karma": "^0.13.22",
"karma-chrome-launcher": "^1.0.1",
"karma-jasmine": "^1.0.2",
"karma-typescript-preprocessor": "0.0.21",
"reflect-metadata": "0.1.2",
"rxjs": "5.0.0-beta.6",
"semantic-release": "^4.3.5",
"systemjs": "^0.19.26",
"tslint": "^3.6.0",
"typescript": "^1.8.10",
"typings": "^1.3.0",
"zone.js": "0.6.12"
},
"bugs": {
"url": "https://github.com/angulartics/angulartics2/issues"
},
"scripts": {
"lint": "tslint ./*.ts ./src/{,*/}*.ts",
"test": "karma start",
"commit": "git-cz",
"build": "typings install && tsc -d",
"semantic-release": "semantic-release pre && npm run build && npm publish && semantic-release post"
},
"main": "./index",
"typings": "./index",
"repository": {
"type": "git",
"url": "https://github.com/angulartics/angulartics2.git"
},
"keywords": [
"angular2",
"ng2",
"angular",
"analytics",
"tracking",
"google analytics",
"google tag manager",
"woopra",
"splunk",
"piwik",
"page tracking",
"event tracking",
"scroll tracking",
"inspectlet"
],
"license": "MIT",
"engines": {
"node": ">=4.2.0"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
}
}