-
-
Notifications
You must be signed in to change notification settings - Fork 126
/
package.json
132 lines (132 loc) · 4.12 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
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
130
131
132
{
"$schema": "./node_modules/ng-packagr/package.schema.json",
"name": "angularx-qrcode",
"version": "18.0.2",
"main": "dist/angularx-qrcode/bundles/angularx-qrcode.umd.js",
"author": {
"name": "Andreas Jacob <[email protected]>",
"url": "http://cordobo.com/"
},
"description": "Simple QRCode generator library for Angular4/5/6/7/8/9/10/11/12/13/14/15/16/17/18+ and Ionic 3/4/5/6/7/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": "rm -rf node_modules && npm install && npm run build && cd dist/angularx-qrcode && npm publish && cd ../../",
"ci:build:lib": "ng build --project angularx-qrcode --configuration production",
"ci:build:app": "ng build --project demo-app --configuration production --base-href=/angularx-qrcode/",
"ci:lint": "ng lint",
"ci:test": "ng test --code-coverage",
"format": "prettier --write ."
},
"dependencies": {
"qrcode": "1.5.3"
},
"peerDependencies": {
"@angular/core": ">= 18.0.0 < 19.0.0"
},
"devDependencies": {
"@angular-devkit/architect": "^0.1801.0",
"@angular-devkit/build-angular": "^18.1.0",
"@angular-eslint/builder": "^18.1.0",
"@angular-eslint/eslint-plugin": "^18.0.1",
"@angular-eslint/eslint-plugin-template": "^18.0.1",
"@angular-eslint/schematics": "^18.1.0",
"@angular-eslint/template-parser": "^18.1.0",
"@angular/animations": "^18.0.2",
"@angular/cdk": "^18.0.2",
"@angular/cli": "^18.1.0",
"@angular/common": "^18.0.2",
"@angular/compiler": "^18.0.2",
"@angular/compiler-cli": "^18.1.0",
"@angular/core": "^18.0.2",
"@angular/forms": "^18.1.0",
"@angular/material": "^18.1.0",
"@angular/platform-browser": "^18.0.2",
"@angular/platform-browser-dynamic": "^18.1.0",
"@angular/router": "^18.1.0",
"@babel/core": "^7.24.8",
"@types/jasmine": "~5.1.2",
"@types/node": "^20.14.10",
"@types/qrcode": "1.5.5",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"eslint": "^8.57.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsdoc": "48.7.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"jasmine-core": "^5.1.2",
"karma": "6.4.3",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.1",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"lite-server": "2.6.1",
"ng-packagr": "^18.1.0",
"ngx-color-picker": "17.0.0",
"prettier": "3.3.1",
"rimraf": "5.0.7",
"rxjs": "^7.4.0",
"tslib": "^2.6.3",
"typescript": "~5.4.5",
"zone.js": "^0.14.7"
},
"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",
"ionic",
"ionic3",
"ionic4",
"ionic5",
"ionic6",
"ionic7",
"ionic8",
"aot",
"aot-compatible",
"aot-compilation",
"library",
"ng",
"ng2",
"ngx",
"ivy",
"qr",
"code",
"qrcode",
"qr-code"
],
"repository": {
"type": "git",
"url": "https://github.com/cordobo/angularx-qrcode.git"
},
"bugs": {
"url": "https://github.com/cordobo/angularx-qrcode/issues"
},
"homepage": "https://github.com/cordobo/angularx-qrcode#readme"
}