-
-
Notifications
You must be signed in to change notification settings - Fork 133
Expand file tree
/
Copy pathpackage.json
More file actions
129 lines (129 loc) · 3.45 KB
/
package.json
File metadata and controls
129 lines (129 loc) · 3.45 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
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
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "angularx-qrcode",
"version": "21.0.5",
"private": true,
"author": {
"name": "Andreas Jacob <andreas@cordobo.de>",
"url": "http://cordobo.com/"
},
"description": "Simple QRCode generator library for Angular 4-21 and Ionic 3-8 using node-qrcode",
"license": "MIT",
"scripts": {
"lint": "ng lint",
"ng": "ng",
"test": "ng test",
"watch": "ng build --project angularx-qrcode --watch --configuration development",
"start": "ng serve demo-app --open",
"start:dev": "npm run build && npm run build:demo -- --configuration development && npm run start:server",
"start:prod": "npm run build && npm run build:demo -- --configuration production && npm run start:server",
"start:server": "lite-server --baseDir=\"dist/demo-app\"",
"prepare:build": "rimraf .angular dist tmp && cp ./README.md ./LICENSE projects/angularx-qrcode/",
"build": "npm run prepare:build && ng build --project angularx-qrcode --configuration production",
"build:demo": "ng build --project demo-app",
"publish": "node -e \"console.log('Publishing is only available via github. See .github/publish.yml')\"",
"ci:build:lib": "ng build --project angularx-qrcode --configuration production",
"ci:build:app": "ng build --project demo-app --configuration production --base-href=/angularx-qrcode/",
"format": "prettier --write ."
},
"prettier": {
"printWidth": 100,
"semi": false,
"singleQuote": true,
"trailingComma": "es5",
"overrides": [
{
"files": "*.html",
"options": {
"parser": "angular"
}
}
]
},
"dependencies": {
"qrcode": "1.5.4"
},
"peerDependencies": {
"@angular/core": ">= 21.0.0 < 22.0.0"
},
"devDependencies": {
"@angular/build": "^21.0.7",
"@angular/cdk": "^21.0.7",
"@angular/cli": "^21.0.7",
"@angular/common": "^21.0.7",
"@angular/compiler": "^21.2.4",
"@angular/compiler-cli": "^21.0.7",
"@angular/core": "^21.2.4",
"@angular/forms": "^21.0.7",
"@angular/material": "^21.0.1",
"@angular/platform-browser": "^21.0.7",
"@angular/platform-browser-dynamic": "^21.0.7",
"@angular/router": "^21.0.7",
"@types/qrcode": "1.5.6",
"angular-eslint": "21.0.1",
"eslint": "^9.39.1",
"jsdom": "^27.1.0",
"lite-server": "2.6.1",
"ng-packagr": "^21.0.0",
"ngx-color-picker": "20.1.1",
"prettier": "3.6.2",
"rimraf": "6.1.2",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"typescript": "~5.9.2",
"typescript-eslint": "8.46.4",
"vitest": "^4.0.8"
},
"keywords": [
"angularx-qrcode",
"angular-qrcode",
"ng-qrcode",
"ngx-qrcode",
"angular",
"angular4",
"angular5",
"angular6",
"angular7",
"angular8",
"angular9",
"angular10",
"angular11",
"angular12",
"angular13",
"angular14",
"angular15",
"angular16",
"angular17",
"angular18",
"angular19",
"angular20",
"angular21",
"ionic",
"ionic3",
"ionic4",
"ionic5",
"ionic6",
"ionic7",
"ionic8",
"aot",
"aot-compatible",
"aot-compilation",
"library",
"ng",
"ng-qrcode",
"ng2",
"ngx",
"ivy",
"qr",
"code",
"qrcode",
"qr-code"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Cordobo/angularx-qrcode.git"
},
"bugs": {
"url": "https://github.com/Cordobo/angularx-qrcode/issues"
},
"homepage": "https://cordobo.github.io/angularx-qrcode/"
}