-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
79 lines (79 loc) · 2.88 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
{
"name": "ngx-advanced-img-sample",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build ngx-advanced-img",
"build-publish": "npm run build-publish-npmjs && npm run build-publish-github",
"_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-draggable-dom\"/' projects/ngx-draggable-dom/package.json && npm run _build-publish; git checkout -- ./projects/ngx-draggable-dom/package.json",
"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 <[email protected]> (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://[email protected]:bmartinson/ngx-advanced-img.git"
},
"bugs": {
"url": "https://github.com/bmartinson/ngx-advanced-img/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/bmartinson/ngx-advanced-img#readme",
"dependencies": {
"@angular/animations": "^19.1.1",
"@angular/common": "^19.1.1",
"@angular/compiler": "^19.1.1",
"@angular/core": "^19.1.1",
"@angular/forms": "^19.1.1",
"@angular/platform-browser": "^19.1.1",
"@angular/platform-browser-dynamic": "^19.1.1",
"@angular/router": "^19.1.1",
"@types/mime-types": "^2.1.4",
"@xmldom/xmldom": "~0.9.6",
"exifr": "^7.1.3",
"libheif-js": "^1.18.2",
"mime": "^4.0.6",
"rxjs": "~7.8.1",
"tslib": "^2.8.1",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^19.1.2",
"@angular/cli": "~19.1.2",
"@angular/compiler-cli": "^19.1.1",
"@trivago/prettier-plugin-sort-imports": "^5.2.1",
"@types/jasmine": "~5.1.5",
"@types/node": "^22.10.7",
"angular-eslint": "19.0.2",
"eslint": "^9.18.0",
"eslint-plugin-import": "2.31.0",
"jasmine-core": "~5.5.0",
"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.1.0",
"ng-packagr": "^19.1.0",
"prettier": "^3.4.2",
"typescript": "~5.6.0",
"typescript-eslint": "8.20.0"
}
}