forked from vimalavinisha/angular2-image-popup
-
-
Notifications
You must be signed in to change notification settings - Fork 80
/
package.json
100 lines (100 loc) · 4.48 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
{
"name": "angular-modal-gallery",
"version": "12.0.0",
"description": "Image gallery for Angular",
"license": "MIT",
"author": "Stefano Cappa",
"homepage": "https://github.com/Ks89",
"repository": {
"type": "git",
"url": "git+https://github.com/Ks89/angular-modal-gallery.git"
},
"engines": {
"node": ">=20.14.0",
"npm": ">=10.2.4"
},
"scripts": {
"ng": "ng",
"start": "npm run serve",
"serve": "npm run serve:dev",
"serve:dev": "ng serve --configuration development",
"serve:prod": "ng serve --configuration production",
"build": "npm run build:lib && npm run build:main",
"build:lib": "npm run clean:dist && ng build @ks89/angular-modal-gallery --configuration production && npm run copy:build && npm run copy:other",
"build:lib:watch": "npm run clean:dist && ng build @ks89/angular-modal-gallery --configuration production --watch",
"build:main": "npm run build:main:dev",
"build:main:dev": "ng build --configuration development",
"build:main:prod": "ng build --configuration production",
"build:examples": "npm run build:lib && npm run clean:examples && npm run copy:dist:examples",
"build:all": "npm run build:lib && npm run build:main && npm run build:examples",
"clean": "npm run clean:main",
"clean:main": "npm run clean:dist && npm run clean:coverage",
"clean:dist": "rimraf @ks89 dist",
"clean:coverage": "rimraf coverage",
"clean:angular-cli-18": "rimraf examples/angular-cli-18/node_modules/@ks89 examples/angular-cli-18/dist",
"clean:angular-cli-material": "rimraf examples/angular-cli-material/node_modules/@ks89 examples/angular-cli-material/dist",
"clean:universal": "rimraf examples/universal/node_modules/@ks89 examples/universal/dist",
"clean:examples": "npm run clean:angular-cli-18 && npm run clean:angular-cli-material && npm run clean:universal",
"clean:all": "npm run clean:main && npm run clean:examples",
"copy:dist": "npm run copy:dist:examples",
"copy:dist:angular-cli-18": "cpr @ks89 examples/angular-cli-18/node_modules/@ks89 -o",
"copy:dist:angular-cli-material": "cpr @ks89 examples/angular-cli-material/node_modules/@ks89 -o",
"copy:dist:universal": "cpr @ks89 examples/universal/node_modules/@ks89 -o",
"copy:dist:examples": "npm run copy:dist:angular-cli-18 && npm run copy:dist:angular-cli-material && npm run copy:dist:universal",
"copy:build": "cpr dist/ks89/angular-modal-gallery @ks89/angular-modal-gallery -o",
"copy:other": "cpr README.md @ks89/angular-modal-gallery/README.md -o && cpr LICENSE @ks89/angular-modal-gallery/LICENSE -o && cpr CHANGELOG.md @ks89/angular-modal-gallery/CHANGELOG.md -o && cpr CONTRIBUTING.md @ks89/angular-modal-gallery/CONTRIBUTING.md -o",
"pretest": "npm run clean:coverage && npm run check:circulardeps",
"test": "ng test @ks89/angular-modal-gallery --watch=false",
"test:watch": "ng test @ks89/angular-modal-gallery --watch=true",
"check:licenses": "license-checker --exclude 'MIT, MIT OR X11, BSD, ISC, Apache-2.0'",
"check:circulardeps": "npx madge --circular --extensions ts ./",
"coveralls": "coveralls < coverage/ks89/angular-modal-gallery/lcov.info"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged --verbose"
}
},
"private": true,
"dependencies": {
"@angular/cdk": "^18.0.0",
"@angular/common": "^18.0.1",
"@angular/compiler": "^18.0.1",
"@angular/core": "^18.0.1",
"@angular/forms": "^18.0.1",
"@angular/platform-browser": "^18.0.1",
"@angular/platform-browser-dynamic": "^18.0.1",
"@angular/router": "^18.0.1",
"@fortawesome/fontawesome-svg-core": "^6.5.2",
"@fortawesome/free-solid-svg-icons": "^6.5.2",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zone.js": "~0.14.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.0.2",
"@angular/cli": "~18.0.2",
"@angular/compiler-cli": "^18.0.1",
"@types/jasmine": "~5.1.0",
"@types/node": "^20.12.13",
"coveralls": "^3.1.1",
"cpr": "^3.0.1",
"cross-env": "^7.0.0",
"husky": "^9.0.11",
"jasmine-core": "~5.1.0",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"karma-mocha-reporter": "^2.2.5",
"license-checker": "^25.0.1",
"madge": "^7.0.0",
"ng-packagr": "^18.0.0",
"prettier": "^3.2.5",
"pretty-quick": "^4.0.0",
"rimraf": "^5.0.7",
"snyk": "^1.1291.1",
"typescript": "~5.4.5"
}
}