-
Notifications
You must be signed in to change notification settings - Fork 92
/
package.json
83 lines (83 loc) · 2.49 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
{
"name": "ng2-slim-loading-bar",
"description": "Angular2 component shows slim loading bar at the top of the page",
"version": "0.0.0-semantically-released",
"scripts": {
"test": "karma start",
"test-watch": "tsc && karma start --no-single-run --auto-watch",
"commit": "npm run prepublish && npm test && git-cz",
"prepublish": "ngc && npm run build",
"build": "webpack && cp style.css bundles/style.css",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"analyze": "ANALYZE=true webpack"
},
"repository": {
"type": "git",
"url": "https://github.com/akserg/ng2-slim-loading-bar.git"
},
"keywords": [
"angular",
"angular2",
"slim",
"loading",
"bar",
"progress"
],
"author": "Sergey Akopkokhyants",
"license": "MIT",
"bugs": {
"url": "https://github.com/akserg/ng2-slim-loading-bar/issues"
},
"main": "bundles/index.umd.js",
"module": "index.js",
"typings": "index.d.ts",
"homepage": "https://github.com/akserg/ng2-slim-loading-bar",
"peerDependencies": {
"@angular/core": "^2.4.7 || ^4.3.0"
},
"devDependencies": {
"@angular/common": "^2.4.7 || ^4.3.0",
"@angular/compiler": "^2.4.7",
"@angular/compiler-cli": "^2.4.7",
"@angular/core": "^2.4.7",
"@angular/platform-browser": "^2.4.7",
"@angular/platform-browser-dynamic": "^2.4.7",
"@angular/platform-server": "^2.4.7",
"@types/hammerjs": "^2.0.33",
"@types/jasmine": "2.5.37",
"@types/node": "6.0.46",
"awesome-typescript-loader": "2.2.4",
"codelyzer": "2.0.0-beta.2",
"commitizen": "2.8.6",
"core-js": "2.4.1",
"cz-conventional-changelog": "1.2.0",
"istanbul-instrumenter-loader": "0.2.0",
"jasmine-core": "2.5.2",
"karma": "1.3.0",
"karma-chrome-launcher": "2.0.0",
"karma-coverage": "1.1.1",
"karma-firefox-launcher": "1.0.0",
"karma-jasmine": "1.0.2",
"karma-mocha-reporter": "^2.1.0",
"karma-remap-coverage": "~0.1.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.1",
"loader-utils": "~0.2.16",
"reflect-metadata": "^0.1.8",
"rxjs": "^5.0.3",
"semantic-release": "4.3.5",
"source-map-loader": "0.1.5",
"ts-helpers": "1.1.2",
"tslint": "~4.0.0",
"tslint-loader": "3.3.0",
"typescript": "2.0.10",
"webpack": "2.2.0",
"webpack-bundle-analyzer": "^2.9.0",
"zone.js": "^0.7.6"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}