forked from Ks89/angular-modal-gallery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 4.39 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
{
"name": "angular-modal-gallery",
"version": "11.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": ">=18.12.1",
"npm": ">=8.19.2"
},
"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-16": "rimraf examples/angular-cli-16/node_modules/@ks89 examples/angular-cli-16/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-16 && 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-16": "cpr @ks89 examples/angular-cli-16/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-16 && 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",
"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'",
"coveralls": "coveralls < coverage/ks89/angular-modal-gallery/lcov.info"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged --verbose"
}
},
"private": true,
"dependencies": {
"@angular/cdk": "^16.0.0",
"@angular/common": "^16.0.0",
"@angular/compiler": "^16.0.0",
"@angular/core": "^16.0.0",
"@angular/forms": "^16.0.0",
"@angular/platform-browser": "^16.0.0",
"@angular/platform-browser-dynamic": "^16.0.0",
"@angular/router": "^16.0.0",
"@fortawesome/fontawesome-svg-core": "^6.4.0",
"@fortawesome/free-solid-svg-icons": "^6.4.0",
"rxjs": "~7.5.0",
"tslib": "^2.3.0",
"zone.js": "~0.13.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^16.0.0",
"@angular/cli": "~16.0.0",
"@angular/compiler-cli": "^16.0.0",
"@types/jasmine": "~4.3.0",
"@types/node": "^18.11.9",
"coveralls": "^3.1.1",
"cpr": "^3.0.1",
"cross-env": "^7.0.0",
"husky": "^8.0.3",
"jasmine-core": "~4.5.0",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.0.0",
"karma-mocha-reporter": "^2.2.5",
"license-checker": "^25.0.1",
"lite-server": "^2.6.1",
"ng-packagr": "^16.0.1",
"prettier": "^2.8.8",
"pretty-quick": "^3.1.3",
"rimraf": "^5.0.0",
"snyk": "^1.1153.0",
"typescript": "~5.0.4"
}
}