-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
116 lines (116 loc) · 4.11 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "ngx-loader-indicator",
"version": "19.0.0",
"description": "The best directive without wrapping your element to additional component",
"license": "MIT",
"keywords": [
"ngx-loader-indicator",
"ngx-loader",
"ngx",
"ngx-spinner",
"ngx-loader-spinner",
"angular",
"jsdaddy"
],
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build angular-loader --base-href /ngx-loader-indicator/ --configuration production",
"build:lib": "ng build --configuration production ngx-loader-indicator-lib && bun run copy-libdocs",
"copy-libdocs": "cp README.md LICENSE dist/ngx-loader-indicator-lib",
"publish:lib": "cd dist/ngx-loader-indicator-lib && bun publish",
"test": "ng test",
"test:pre-commit": "ng test --watch=false",
"lint": "npx eslint . && bun run lint:scss",
"lint:scss": "stylelint \"**/*.scss\"",
"lint:scss:fix": "stylelint \"**/*.scss\" --fix",
"lint:fix": "ng lint --fix && bun run lint:scss:fix",
"prettier:fix": "npx prettier --write .",
"type-coverage": "type-coverage",
"init:git:hooks": ".github/scripts/setup_hooks.sh",
"snyk:auth": "snyk auth",
"snyk:test": "snyk test && snyk code test"
},
"repository": {
"type": "git",
"url": "https://github.com/JsDaddy/ngx-loader-indicator.git"
},
"dependencies": {
"@angular/animations": "19.0.0",
"@angular/common": "19.0.0",
"@angular/compiler": "19.0.0",
"@angular/core": "19.0.0",
"@angular/forms": "19.0.0",
"@angular/platform-browser": "19.0.0",
"@angular/platform-browser-dynamic": "19.0.0",
"@angular/router": "^19.0.0",
"core-js": "3.39.0",
"highlight.js": "^11.10.0",
"ngx-highlightjs": "^12.0.0",
"ngxtension": "4.1.0",
"rxjs": "7.8.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "19.0.0",
"@angular-eslint/builder": "18.4.1",
"@angular-eslint/eslint-plugin": "18.4.1",
"@angular-eslint/eslint-plugin-template": "18.4.1",
"@angular-eslint/schematics": "18.4.1",
"@angular-eslint/template-parser": "18.4.1",
"@angular/cli": "19.0.0",
"@angular/compiler-cli": "19.0.0",
"@angular/language-service": "19.0.0",
"@commitlint/cli": "19.6.0",
"@commitlint/config-conventional": "19.6.0",
"@types/jasmine": "5.1.4",
"@types/jasminewd2": "2.0.13",
"@types/node": "22.9.1",
"@typescript-eslint/eslint-plugin": "8.15.0",
"@web/test-runner": "^0.19.0",
"angular-eslint": "^18.4.1",
"eslint": "9.15.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-json": "4.0.1",
"eslint-plugin-prettier": "5.2.1",
"jasmine-core": "5.4.0",
"jasmine-spec-reporter": "7.0.0",
"lint-staged": "15.2.10",
"ng-packagr": "19.0.0",
"npm-check-updates": "^17.1.11",
"prettier": "3.3.3",
"puppeteer": "23.9.0",
"semantic-release": "24.2.0",
"semantic-release-export-data": "1.1.0",
"snyk": "^1.1294.1",
"stylelint": "16.10.0",
"stylelint-config-prettier": "9.0.5",
"stylelint-config-recommended-scss": "14.1.0",
"stylelint-prettier": "5.0.2",
"ts-node": "10.9.2",
"type-coverage": "^2.29.7",
"typescript": "5.6.3",
"typescript-eslint": "^8.15.0",
"tailwindcss": "^3.4.15",
"bun-types": "^1.1.36",
"postcss": "8.4.49",
"postcss-nesting": "13.0.1",
"cssnano": "7.0.6",
"postcss-scss": "4.0.9"
},
"typeCoverage": {
"atLeast": 98,
"ignoreObject": true,
"ignoreAsAssertion": true,
"ignoreTypeAssertion;": true,
"strict": true,
"suppressError": true,
"reportSemanticError": true,
"ignoreCatch": true,
"ignoreFiles": [
"server/**/*.ts",
"server.ts"
]
},
"ngPackage": true
}