forked from awronka/Angular2Piwik
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.74 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
{
"name": "angular2piwik",
"version" : "0.1.5-beta",
"description": "a wrapper to access piwik inside your angular 2 app",
"homepage": "https://github.com/awronka/Angular2Piwik",
"author": "Alexius Wronka <[email protected]> (http://github.com/awronka)",
"contributors": [
"Adam Yost <[email protected]> (https://github.com/swimmadude66)"
],
"devDependencies": {
"@angular/common": "~2.4.1",
"@angular/compiler": "~2.4.1",
"@angular/compiler-cli": "~2.4.1",
"@angular/core": "~2.4.1",
"@angular/platform-browser": "~2.4.1",
"@angular/platform-browser-dynamic": "~2.4.1",
"@angular/router": "~3.4.1",
"@types/applicationinsights-js": "^0.23.5",
"@types/core-js": "^0.9.32",
"@types/jasmine": "^2.2.29",
"@types/node": "^6.0.54",
"awesome-typescript-loader": "^2.2.4",
"codelyzer": "2.0.0-beta.2",
"commitizen": "^2.8.6",
"concurrently": "^3.1.0",
"core-js": "^2.4.1",
"cz-conventional-changelog": "^1.2.0",
"istanbul-instrumenter-loader": "^0.2.0",
"jasmine-core": "^2.5.1",
"karma": "^1.3.0",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.1.1",
"karma-jasmine": "^1.0.2",
"karma-mocha-reporter": "^2.1.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.8.0",
"reflect-metadata": "^0.1.3",
"rimraf": "^2.5.2",
"rxjs": "~5.0.2",
"semantic-release": "^6.3.5",
"source-map-loader": "^0.1.5",
"systemjs": "^0.19.38",
"ts-helpers": "^1.1.1",
"tslint": "^4.2.0",
"tslint-loader": "^3.3.0",
"typescript": "2.0.2",
"webpack": "^1.13.2",
"zone.js": "~0.7.4"
},
"bugs": {
"url": "https://github.com/awronka/Angular2Piwik/issues"
},
"scripts": {
"prepublish" : "tsc",
"rimraf": "rimraf",
"lint": "tslint ./*.ts ./src/{,*/}*.ts",
"test": "tsc && karma start",
"test-watch": "tsc && concurrently \"tsc -w\" \"karma start karma.conf.js\"",
"clean": "npm cache clean && npm run rimraf -- node_modules dist",
"preclean:install": "npm run clean",
"clean:install": "npm set progress=false && npm i",
"commit": "git-cz",
"build": "tsc -d && ngc",
"semantic-release": "semantic-release pre && npm run build && npm publish && semantic-release post"
},
"main": "./dist/index",
"typings": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/awronka/Angular2Piwik"
},
"keywords": [
"angular2",
"ng2",
"angular",
"analytics",
"tracking",
"piwik",
"page tracking",
"event tracking",
"scroll tracking"
],
"license": "MIT",
"engines": {
"node": ">=4.2.0"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
}
}