forked from akserg/ng2-slim-loading-bar
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
87 lines (87 loc) · 2.57 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
{
"name": "@cime/ngx-slim-loading-bar",
"description": "Angular 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 --prepare && npm publish --access=public && semantic-release --success",
"analyze": "ANALYZE=true webpack"
},
"repository": {
"type": "git",
"url": "https://github.com/cime/ngx-slim-loading-bar.git"
},
"keywords": [
"angular",
"angular2",
"angular5",
"angular6",
"angular7",
"slim",
"loading",
"bar",
"progress"
],
"author": "Sergey Akopkokhyants",
"license": "MIT",
"bugs": {
"url": "https://github.com/cime/ngx-slim-loading-bar/issues"
},
"main": "bundles/index.umd.js",
"module": "index.js",
"typings": "index.d.ts",
"homepage": "https://github.com/cime/ngx-slim-loading-bar",
"peerDependencies": {
"@angular/core": "^7.0.2"
},
"devDependencies": {
"@angular/common": "^7.0.2",
"@angular/compiler": "^7.0.2",
"@angular/compiler-cli": "^7.0.2",
"@angular/core": "^7.0.2",
"@angular/platform-browser": "^7.0.2",
"@angular/platform-browser-dynamic": "^7.0.2",
"@angular/platform-server": "^7.0.2",
"@types/hammerjs": "^2.0.36",
"@types/jasmine": "2.8.11",
"@types/node": "10.12.2",
"awesome-typescript-loader": "^5.2.1",
"codelyzer": "4.5.0",
"commitizen": "3.0.4",
"core-js": "2.5.7",
"cz-conventional-changelog": "2.1.0",
"istanbul-instrumenter-loader": "3.0.1",
"jasmine-core": "3.3.0",
"karma": "3.1.1",
"karma-chrome-launcher": "2.2.0",
"karma-coverage": "1.1.2",
"karma-firefox-launcher": "1.1.0",
"karma-jasmine": "1.1.2",
"karma-mocha-reporter": "^2.2.5",
"karma-remap-coverage": "~0.1.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^3.0.5",
"loader-utils": "~1.1.0",
"reflect-metadata": "^0.1.12",
"rxjs": "^6.3.3",
"semantic-release": "^15.10.8",
"source-map-loader": "0.2.4",
"ts-helpers": "1.1.2",
"tslint": "~5.11.0",
"tslint-loader": "3.5.4",
"typescript": "^3.1.6",
"webpack": "^4.25.1",
"webpack-bundle-analyzer": "^3.0.3",
"webpack-cli": "^3.1.2",
"zone.js": "^0.8.26"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}