-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 3.21 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 3.21 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
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
{
"name": "ngx-advanced-img-sample",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"prep-release": "./scripts/bump-package-version.sh ngx-advanced-img",
"build": "ng build ngx-advanced-img --configuration production",
"build-publish": "npm run build-publish-npmjs && npm run build-publish-github && npm run _tag-release",
"_build-publish": "ng build ngx-advanced-img --configuration=production && cd dist/ngx-advanced-img/ && npm publish && cd ../.. && rm -rf ./dist",
"build-publish-npmjs": "sed -i '' 's/\"name\": \"ngx-advanced-img\"/\"name\": \"ngx-advanced-img\"/' projects/ngx-advanced-img/package.json && npm run _build-publish; git checkout -- ./projects/ngx-advanced-img/package.json",
"build-publish-github": "sed -i '' 's/\"name\": \"[^\"]*\"/\"name\": \"@bmartinson\\/ngx-advanced-img\"/' projects/ngx-advanced-img/package.json && npm run _build-publish; git checkout -- ./projects/ngx-advanced-img/package.json",
"_tag-release": "VERSION=$(jq -r '.version' projects/ngx-advanced-img/package.json) && git tag -a \"$VERSION\" -m \"$VERSION\" && git push --follow --tags",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"format": "npx prettier --write . $@",
"lint": "ng lint --fix ngx-advanced-img-sample; ng lint --fix ngx-advanced-img"
},
"private": false,
"license": "MIT",
"author": "Brian Martinson <brian@brianmartinson.com> (https://brianmartinson.com/)",
"description": "An Angular directive library for advanced img feature extensions.",
"keywords": [
"angular",
"img",
"fallback",
"progressive",
"loader",
"ng",
"ng2",
"ngx"
],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com:bmartinson/ngx-advanced-img.git"
},
"bugs": {
"url": "https://github.com/bmartinson/ngx-advanced-img/issues",
"email": "brian@brianmartinson.com"
},
"homepage": "https://github.com/bmartinson/ngx-advanced-img#readme",
"dependencies": {
"@angular/animations": "^21.1.2",
"@angular/common": "^21.1.2",
"@angular/compiler": "^21.1.2",
"@angular/core": "^21.1.2",
"@angular/forms": "^21.1.2",
"@angular/platform-browser": "^21.1.2",
"@angular/platform-browser-dynamic": "^21.1.2",
"@angular/router": "^21.1.2",
"@types/mime-types": "^3.0.1",
"@xmldom/xmldom": "~0.9.8",
"exifreader": "^4.36.1",
"libheif-js": "^1.19.8",
"mime": "^4.1.0",
"rxjs": "~7.8.2",
"tslib": "^2.8.1",
"uuid": "^13.0.0",
"zone.js": "~0.16.0"
},
"devDependencies": {
"@angular/build": "^21.1.2",
"@angular/cli": "~21.1.2",
"@angular/compiler-cli": "^21.1.2",
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
"@types/jasmine": "~6.0.0",
"@types/node": "^25.2.0",
"angular-eslint": "21.2.0",
"baseline-browser-mapping": "^2.9.19",
"eslint": "^9.39.2",
"eslint-plugin-import": "2.32.0",
"jasmine-core": "~6.0.1",
"karma": "~6.4.4",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.1",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.2.0",
"ng-packagr": "^21.1.0",
"prettier": "^3.8.1",
"typescript": "~5.9.3",
"typescript-eslint": "^8.54.0"
}
}