forked from Gbuomprisco/ngx-content-loading
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·76 lines (76 loc) · 2.31 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
{
"name": "ngx-content-loading-2",
"version": "0.3.4",
"license": "MIT",
"scripts": {
"ng": "ng",
"start": "ng serve --port 4201",
"build": "ng build --configuration production",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"packagr": "ng-packagr -p ng-package.json",
"clean": "rm -rf dist",
"release": "npm run packagr && npm publish dist && npm run clean",
"cypress:open": "cypress open",
"cypress:run": "cypress run"
},
"private": false,
"author": "Giancarlo Buomprisco <[email protected]>",
"contributors": [
"Chinmay Nagrale <[email protected]>"
],
"keywords": [
"angular content loader",
"angular content loading",
"svg loaders"
],
"repository": {
"type": "git",
"url": "git+https://github.com/MiB3Avenger/ngx-content-loading.git"
},
"bugs": {
"url": "https://github.com/MiB3Avenger/ngx-content-loading/issues"
},
"homepage": "https://github.com/MiB3Avenger/ngx-content-loading",
"peerDependencies": {
"@angular/platform-browser": "^17.1.3",
"@angular/platform-browser-dynamic": "^17.1.3",
"core-js": "^2.5.7",
"zone.js": "~0.14.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^17.1.3",
"@angular/cli": "^17.1.3",
"@angular/common": "^17.1.3",
"@angular/compiler": "^17.1.3",
"@angular/compiler-cli": "^17.1.3",
"@angular/core": "^17.1.3",
"@angular/language-service": "^17.1.3",
"@cypress/schematic": "^2.5.1",
"@types/cypress": "^1.1.3",
"@types/jasmine": "~5.1.4",
"@types/jasminewd2": "~2.0.13",
"@types/node": "^20.11.17",
"codelyzer": "^6.0.2",
"cypress": "latest",
"jasmine-core": "~5.1.2",
"jasmine-spec-reporter": "~7.0.0",
"karma": "^6.4.2",
"karma-chrome-launcher": "~3.2.0",
"karma-cli": "~2.0.0",
"karma-coverage-istanbul-reporter": "~3.0.3",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "^2.1.0",
"ng-packagr": "^17.1.2",
"rxjs": "^6.6.7",
"rxjs-compat": "^6.3.3",
"ts-node": "~7.0.0",
"typescript": ">=5.2 <5.4"
},
"dependencies": {
"tslib": "^2.0.0"
},
"description": "Angular component to create SVG loading placeholders. Inspired by the awesome [React Content Loader](https://github.com/danilowoz/react-content-loader).",
"main": "src/index.ts"
}