forked from chevcast/angular-spinners
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.58 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.58 KB
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
{
"name": "@chevtek/angular-spinners",
"version": "5.1.2",
"description": "Easy loading spinner management for apps running Angular 2+",
"main": "dist/bundles/angular-spinners.umd.js",
"module": "dist/index.js",
"scripts": {
"cleanup": "rimraf dist/bundles dist/src dist/index.d.ts dist/index.metadata.json dist/index.js dist/index.js.map dist/LICENSE dist/README.md",
"bundle": "rollup -c",
"minify": "uglifyjs dist/bundles/angular-spinners.umd.js --screw-ie8 --compress --mangle --comments --output dist/bundles/angular-spinners.umd.min.js",
"copy": "copyfiles LICENSE README.md dist",
"build": "npm run cleanup && ngc && npm run bundle && npm run minify && npm run copy",
"postinstall": "ngcc"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/chevtek/angular-spinners.git"
},
"keywords": [
"angular",
"angular2",
"angular 2",
"angular4",
"spinners",
"spinner",
"loading",
"loaders"
],
"author": "Alex Ford",
"license": "MIT",
"bugs": {
"url": "https://github.com/chevtek/angular-spinners/issues"
},
"homepage": "https://github.com/chevtek/angular-spinners#readme",
"dependencies": {
"@angular/common": "^9.1.13",
"@angular/core": "^9.1.13",
"reflect-metadata": "^0.1.10",
"rxjs": "^6.5.3",
"tslib": "^1.10.0",
"zone.js": "^0.10.3"
},
"devDependencies": {
"@angular/compiler": "^9.1.13",
"@angular/compiler-cli": "^9.1.13",
"copyfiles": "^1.2.0",
"rimraf": "^2.6.1",
"rollup": "^0.43.0",
"typescript": "^3.8.3",
"uglify-js": "^3.0.20"
}
}